我有这个代码调用在线Web服务,我从浏览器运行此代码,但它总是给出错误和运行错误功能,是否有一个端口打开以使用Javascript从浏览器调用Web服务
$.ajax(
{
type: 'POST',
url:'https://www.arsel.qa/arselservicesstg/GeneralServices.asmx/GetMobileConfiguration',
data: "key=some value",
dataType: 'xml',
success: function (response) {},
error: function (error) {
alert(error + "error");
}
}) // adding missing code (probably an issue adding the code here)
答案 0 :(得分:0)
尝试将data属性设置为:
data: { 'Key' : 'value' },