如何将复杂的JavaScript对象发送到ASP.net WebMethod?

时间:2014-09-10 09:48:05

标签: javascript asp.net ajax

我正在尝试将我的客户端自定义对象(JavaScript)发送到ASP.net Web方法。我使用jQuery Ajax命令来执行此操作。

有一个我的对象的例子:

function Customer() {
    this.Name = "";
    this.Surname = "";

    this.Addresses = new Array();
}

我用这种方法加载数据:

function buildCurrentCustomer() {
    var currentCustomer = new Customer();

    /** General Info **/
    currentCustomer.Name = $("#Name").val();
    currentCustomer.Surname = $("#Surname").val();

    currentCustomer.Addresses = new Array();
    currentCustomer.Addresses["HOME"] = $("#adHome").val();
    currentCustomer.Addresses["OFFICE"] = $("#adOffice").val();

    return currentCustomer;
}

最后我用这段代码发送数据:

$.ajax({
        type: "POST",
        url: "../_layouts/CustomerManager/MasterPage.aspx/SetCustomer",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        data: "{customer: " + JSON.stringify(currentCustomer) + "}",
        cache: false,
        success: function (result) {

        },
        error: function (ex) {
            WriteToConsole(ex.responseText);
        }
    });

我的服务器端方法是这样的:

[WebMethod]
public static bool SetCustomer(CustomerModel Customer)
{
    //My code...
}

我的CustomerModel类是这样的:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Common.Model.JavaScriptModel
{
    public class CustomerModel
    {
        /** General Info **/
        public string Name {get;set;}
        public string Surname {get;set;}

        public Dictionary<string, string> Addresses { get; set; }
    }
}

问题是当我执行Ajax时,服务器端方法不执行。如果我在:

中更改服务器端方法的签名
public static bool SetCustomer(List<CustomerModel> Customer)

执行SetCustomer方法,但List为空。

为什么我这个问题?我在哪里可以找到有关此功能的文档?

由于

2 个答案:

答案 0 :(得分:3)

首先,如果你使用这样的数据

data: "{customer: " + JSON.stringify(currentCustomer) + "}",

关于后面的代码,你需要使用相同的参数customer而不是Customer,所以这个

public static bool SetCustomer(CustomerModel Customer) { ... }

需要更改为

public static bool SetCustomer(CustomerModel customer) { ... }

第二,如果翻译为Customer

javascript中的asp.net对象就是这样的
string Name;
string Surname;
List<string> Addresses;

class背后的代码中的Addresses正在使用

Dictionary<string, string>

因此导致客户端的data无法在服务器端解析并向客户端返回错误,因此您需要将Addresses类更改为

public List<string> Addresses { get; set; }

最后,buildCurrentCustomerAddresses内的代码设置如下

currentCustomer.Addresses = new Array();
currentCustomer.Addresses["HOME"] = $("#adHome").val();
currentCustomer.Addresses["OFFICE"] = $("#adOffice").val();

这永远不会为Addresses添加值,因为它的类型是array,但您将值设置为object就好了,所以如果array你想坚持使用currentCustomer.Addresses = new Array(); currentCustomer.Addresses.push($("#adHome").val()); currentCustomer.Addresses.push($("#adOffice").val()); ,你需要将其改为

Addresses

*注意:

如果您想将Addresses用作数组,请使用此选项,但如果您需要objectHOME,其中包含OFFICEcurrentCustomer.Addresses = {}; currentCustomer.Addresses["Home"] = $("#adHome").val(); currentCustomer.Addresses["Office"] = $("#adOffice").val(); },我编辑答案

编辑:

也许你可以使用像这样的javascript对象

Dictionary<string,string>

Addresses制作相应内容,但如果它不起作用,您可以将public List<Address> Addresses { get; set; } 更改为类似

Address

并添加课程public class Address { public string Home {get;set;} public string Office {get;set;} }

Dictionary

我自己从未使用{{1}},所以我不知道它是否相同

答案 1 :(得分:0)

您可以像这样更改源代码..

AJAX -

data:  JSON.stringify({'customer':currentCustomer});

ASP.net Web方法 -

 [WebMethod]
    public static bool SetCustomer(object customer)
    {
        CustomerModel CM = new CustomerModel();
        _Serializer = new JavaScriptSerializer();
        _StringBuilder = new StringBuilder();
        _Serializer.Serialize(customer, _StringBuilder);
        CM = _Serializer.Deserialize<CustomerModel>(_StringBuilder.ToString());
    }

请注意,您必须将页面顶部的_Serializer和_StringBuilder属性初始化为全局变量......

    public static JavaScriptSerializer _Serializer;
    public static StringBuilder _StringBuilder;