作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将参数传递给 webmethod,但没有任何操作。我从方法和原型(prototype) ajax 请求中删除参数,一切正常,但是当我想使用参数时,它不起作用。这是我的代码:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
<script>
var xRequest = new Ajax.Request('PrototypeTest.aspx/Test', {
method: 'post',
parameters: { "id": 'asdf' },
contentType: 'application/json; charset=utf-8',
onSuccess: function (val) {
var brands = val.responseText.evalJSON().d.evalJSON();
brands.each(function (brand) {
alert(brand.Name);
});
},
onerror: function (val) {
debugger;
alert('hata');
}
});
</script>
[WebMethod]
public static string Test(string id)
{
List<brand> brands = new List<brand>();
brands.Add(new brand()
{
Name = "BMW",
IsActive = true
});
var json = new JavaScriptSerializer();
return json.Serialize(brands);
}
我的错误在哪里?
最佳答案
我不知道这是否是正确的方法,但它解决了我的问题:
Ajax.Request('PrototypeTest.aspx/Test?prod=1', {`...
我将参数作为查询字符串传递。
关于javascript - 如何将参数从原型(prototype)传递给Web方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17854124/
我是一名优秀的程序员,十分优秀!