0

你好?我正在尝试使用 mysql 数据库中的数据在 sencha 架构师中加载 xml 存储。我正在构建我的xml,如下所示;

//AFTER MYSQL QUERY

    $dom = new DOMDocument("1.0");
    $dom->formatOutput = true;

// display document in browser as plain text
 // for readability purposes
    header("Content-Type: text/plain");

// create root element
$root = $dom->createElement("stores");
$dom->appendChild($root);

while ($row = mysql_fetch_array($result)) {

//create child element
$storeitem = $dom->createElement("store");
$root->appendChild($storeitem);

// Company label
$company = $dom->createAttribute("c");
$storeitem->appendChild($company);

// company value
$companyValue = $dom->createTextNode($row['company']);
$company->appendChild($companyValue);

}
// save and display tree
echo $dom->saveXML();


//OUTPUT
<stores>
<store c="company1"/>
<store c="company2"/>
</stores>

输出是结构化的 xml。当我将此 xml 复制并粘贴到 xml 文档(例如 test.xml)中并使用它时,它可以完美运行。但是,尝试使用 php 文件中的回显 xml 不起作用。希望我说清楚了。请帮忙。

4

2 回答 2

0

试试这样:

 header ("content-type: text/xml");

不要使用普通标题

header ("content-type: text/plain");
于 2012-10-19T07:24:26.613 回答
0

->将内容类型设置为“XML”:header("Content-type: text/xml");

->如果您的 php 程序要返回一个 xml 。检查您的 php 标签之前或之后是否存在任何空格。

(check wheather you have left spaces or something else here, if so remove it all)
<?php 
......
....
....
?>
(check wheather you have left spaces or something else here, if so remove it all)

问候,TechNew.In

于 2012-10-19T08:15:15.023 回答