我有一个REST服务API,我试图从包含GET和POST HTTP请求的Javascript访问,并且我很难从包含请求主体的Javascript获取POST命令。
我可以使用Fiddler生成POST请求并获得有效的响应,但我无法弄清楚如何在Javascript中编写类似的代码。
Fiddler请求的示例如下:
http://api.mydomain.com/xml/accounts/authenticate?api_key=12345678-1234-1234-1234-123456789012
Request Header:
Host: api.mydomain.com
content-type: text/xml
Content-Length: 123
Request Body:
<Authentication xmlns="http://schemas.mydomain.com/authentication">
<Firstname>Joe</Firstname>
<Lastname>Blow</Lastname>
</Authentication>
当我执行此操作时,Fiddler会显示以下原始数据:
POST http://api.mydomain.com/xml/accounts/authenticate?api_key=12345678-1234-1234-1234-123456789012 HTTP/1.1
Host: api.mydomain.com
content-type: text/xml
Content-Length: 143
<Authentication xmlns="http://schemas.mydomain.com/authentication">
<Firstname>Joe</Firstname>
<Lastname>Blow</Lastname>
</Authentication>
这是我在Jquery Ajax调用中进行同样调用的最佳尝试。
function accessArctos() {
$.ajax({
url: 'http://api.mydomain.com/xml/accounts/authenticate?api_key=12345678-1234-1234-1234-123456789012',
type:"POST",
data: '<Authentication xmlns="http://schemas.mydomain.com/authentication"><Firstname>Joe</Firstname><Lastname>Blow</Lastname></Authentication>',
error: function() { alert("No data found."); },
contentType: "text/xml",
success: function (response) {
alert('Success Auth Token:' + response);
}
});
}
当我执行此代码时,Fiddler将Raw数据显示为:
OPTIONS http://api.mydomain.com/xml/accounts/authenticate?api_key=12345678-1234-1234-1234-123456789012 HTTP/1.1
Host: api.mydomain.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Origin: http://localhost:52381
Access-Control-Request-Method: POST
Access-Control-Request-Headers: content-type
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-cache
我不确定请求正文为什么不显示。我不知道Jquery ajax调用是否是处理此类Request的最佳方法。任何帮助将不胜感激!
谢谢!
答案 0 :(得分:0)
查看responseText
success: function (response, status, xhr) {
console.log(xhr.responseText);
alert('Success Auth Token:' + response);
}
您可能会在那里看到正确的文本,但是由于文档无效,responseXml将为null。
为什么呢?因为你错过了这一行
<?xml version="1.0" encoding="ISO-8859-1"?>
将使其成为有效的XML文档