我正在尝试使用我新设置的 RESTful WCF 服务,位于
[http://196.34.92.60/api/api/v1/public.svc/getoperators]
我使用一些第三方工具访问它,我从中获取
http://code.google.com/a/eclipselabs.org/p/restclient-tool/
https://addons.mozilla.org/en-US/firefox/addon/restclient/
我的结果看起来像我预期的那样:
{
"Results":
[
"golden arrow",
"jammie",
"myciti"
]
}
一切都很好。当我在我的网络浏览器中输入网址时,响应是
<ResultList xmlns="http://schemas.datacontract.org/2004/07/Developer_Portal"xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Results xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><a:string>golden arrow</a:string><a:string>jammie</a:string><a:string>myciti</a:string></Results></ResultList>
不是我所期望的,但我认为这是正常的,并尝试在 Javascript 中使用服务(这里是小提琴)
它以错误响应。在这一点上,我很难过:我需要做什么才能在 javascript 中获得所需的响应?