我试图复制在这个答案中给出的示例:
https://stackoverflow.com/a/5127928/356011
即示出了使用外部实体包括XML文件的在另一个XML文件的片段。
doc.xml:
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE doc [
<!ENTITY otherFile SYSTEM "otherFile.xml">
]>
<doc>
<foo>
<bar>&otherFile;</bar>
</foo>
</doc>
otherFile.xml:
<baz>this is my content</baz>
当我尝试在任何浏览器中打开doc.xml测试这个,我只是得到:
<doc>
<foo>
<bar/>
</foo>
</doc>
渲染。
它不应该是呈现所包含的文件呢?