我使用ajax是否正确并传递参数。似乎网络方法不起作用

时间:2019-08-02 07:30:26

标签: asp.net ajax post webmethod

我正在尝试使用 if(this.router.snapshot.paramMap.get('bagCount')) { var bags = this.router.snapshot.paramMap.get('bagCount'); $(".bagCount").val(bags); sessionStorage.setItem('customerBagcount', bags.toString()); } 将id参数传递给Web方法。

我添加了

Ajax

1 个答案:

答案 0 :(得分:0)

在MyMethod中删除N分类器。

static

首先尝试在浏览器中运行访问和使用Web服务。如果可以,请尝试在您的代码中访问它。

enter image description here

还可以发布您遇到的错误吗?在JavaScript中使用[WebMethod(EnableSession = true)] public string MyMethod(int id) { return "Hello World" + id.ToString(); } 语句来获取确切的错误。