所以我对xml非常陌生,我在网上找到了这个小片段。
{
"root":[
{
"id":"1234567890",
"myarray":[],
"boolean":true
}
]
}
我知道你可以在标签之间放置数据以便以很好的方式存储它。
我只是得不到发送中间的$http({
method : 'POST',
url : '/send',
data : 'test=' + $scope.user.test + '&' + 'email=' + $scope.user.email + '&' + 'name=' + $scope.user.name + '&' + 'message=' + $scope.user.message
});
标记,或者它在那里做了什么。
答案 0 :(得分:1)
<more\>
是<Item>
元素的空子元素。您可以将上面的示例重写为
<?xml version='1.0'?>
<!-- This is a sample XML document -->
<Items>
<Item>test with a child element
<more></more>
stuff
</Item>
</Items>
它的目的是表明你可以在其他元素中混合文本内容和元素。