我有这个网络服务
[WebService(Namespace = "http://localhost/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]
[System.ComponentModel.ToolboxItem(false)]
public class CompanyData : WebService
{ [WebMethod]
public String HelloWorld()
{
return "Hello JSON";
}
}
在同一个目录中,我有一个边缘生成的 HTML 文件
在场景中,有一个带有此代码的按钮 onClick
$.ajax({
type: "POST",
url: "CompanyData.asmx/HelloWorld",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: 'json',
success: function(response)
{
//get the value of a Symbol variable
//sym.getComposition().getStage().sym.getSymbol("feedback").html(response.d);
this.play();
},
failure: function(msg)
{
sym.getComposition().getStage().sym.getSymbol("feedback").html(msg);
},
error:function (request, status, error)
{
}
});
未达到成功功能。我不知道为什么。尝试了代码的变体,阅读其他示例 - 仍然无法正常工作。
我已经使用了错误和失败
我究竟做错了什么 ?两个页面都在 localhost 上的 IIS 7 上
提前致谢