给定这个对象:
: http://www.w3.org/2005/Atom
gd: http://schemas.google.com/g/2005
openSearch: http://a9.com/-/spec/opensearch/1.1/
app: http://www.w3.org/2007/app;
media: http://search.yahoo.com/mrss/
我如何获得第一个财产的价值?我怀疑这是一个简单的过程,但我正在画一个空白。提前致谢。
该对象是这样构建的:
服务器端(php):
$namespaces = $feedXML->getNamespaces(true);
$arr = array(
'Status' => 'Success',
'Message' => 'Feed fetched.',
'Namespaces' => $namespaces,
'Feed XML' => $feedXML
);
echo json_encode($arr);
客户端(JS):
var output = '';
for (property in dataj["Namespaces"]) {
output += property + ': ' + dataj["Namespaces"][property] + '; ';
}
alert(output);
我希望能够检查名称空间以查看这是 Atom 还是 RDF。
听起来只是迭代每个属性将是最好的方法。