0

我在 aspnet 上使用 JavaScript 和 C#。我想将 3 个值从 Asp 页面传递给后面的代码,为此我使用 Json 方法。这是我的做法:

   //initialize x, y and nome
   var requestParameter = { 'xx': x, 'yy': y, 'name': nome };

            $.ajax({
                type: 'POST',
                url: 'Canvas.aspx/GetData',
                data: requestParameter,
                //contentType: "plain/text",
                contentType: 'application/json; charset=utf-8',
                dataType: 'json',
                success: function (data) {
                    alert(data.x);

                },
                error: function () { alert("error"); }
            });

然后在 C# 上我做:

[WebMethod]
public static string GetData(Object[] output)
{
    return output.ToString();
}

出于某种原因,我不断收到警报说“错误”(我在 ajax post 方法中定义的那个)。我想知道为什么,以及如何避免这种情况。提前致谢

4

2 回答 2

1

 { 'xx': x, 'yy': y, 'name': nome }

不是有效的 json。

有效的是

 var requestParameter = { "xx": 1, "yy": 11, "name": "test" }

为了运行,只需更改参数 onwebmethod和 fromobject[]Dictionary<string,object>

作为您上次评论的继续,我用另一个解决方案更新了我的帖子。

页面

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>

      function testmethod() 
          {
            var requestParameter = { "xx": 1, "yy": 11, "name": "adadsaasd111" };
            PageMethods.test(requestParameter);
           }

        function test() 
        {
            testmethod();
        }
    </script>

    <input id="Button1" type="button" onclick="return test();" value="button" />
</form>

cs代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    [System.Web.Services.WebMethod]
    public static void test(Dictionary<string,object> cal)
    {
       // todo 
    }
}

}

于 2013-06-27T11:20:11.047 回答
0

更改 var requestParameter = { 'xx': x, 'yy': y, 'name': nome };

var requestParameter = { "xx": "'+x+'", "yy": "'+y+'", "name": "'+nome+'" };

还添加

[ScriptMethod(ResponseFormat = ResponseFormat.Json)]

[WebMethod]

同样在声明类之前添加

[System.Web.Script.Services.ScriptService]

此标记是允许从脚本调用 Web 方法所必需的

你的网络服务应该是这样的

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetData(String xx, String yy, String name)
{
    return xx+yy+name;
}

和jQuery

 $.ajax({
url: '/Canvas.aspx/GetData',// the path should be correct
            data: '{ "xx": "'+x+'", "yy": "'+y+'", "name": "'+nome+'" }',
            dataType: 'json',
            contentType: 'application/json; charset=utf-8',
            type: 'POST',
            success: function (msg) {
                alert(msg.d);

            },
            error: function (msg) {

                //alert(msg.d);
                alert('error');
            }
        });
于 2013-06-27T11:41:26.150 回答