在我的WCF服务(jQuery,ajax)中无法接收正确的参数

时间:2011-02-25 07:42:46

标签: ajax wcf jquery parameters

我的客户端有一个方法。我将“{'id':'1'}”作为数据传递出来,我用双引号“{”id“:”1“}”来解决一个小问题):enter image description here

但是在服务器上我得到零:

enter image description here

我做错了什么?

和WCF方法的属性: enter image description here

1 个答案:

答案 0 :(得分:2)

为什么要在参数中添加双引号?它们必须以json的形式发送。在你的exaple你发送一个没有键的字符串!参数必须设置为

parameters = {id: 1}

然后服务器正确接收数据。