前端之家收集整理的这篇文章主要介绍了
在AngularJS中发布XML,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在寻找一些angularjs文档的时间,这些文档解释了如何使用$http对象POST xml数据. angular只是不提供它们的$http对象吗?
代码:
$http({
method: 'POST',url: 'http://10.0.0.123/PHP/itemsGet.PHP',data: '<searchKey id="whatever"/>',headers: { "Content-Type": 'application/x-www-form-urlencoded' }
})
我来到这里寻找同样的事情,但是我尝试了Skyler的
解决方案而且没有用.
我将
内容类型更改为’application / xml’并且它有效.
这是片段:
$http({
method: 'POST',headers: { "Content-Type": 'application/xml' }
})
原文链接:https://www.f2er.com/angularjs/143287.html