0

您好我第一次在 asp.net 中使用 JSON

我有这样的 WebMethod

               [WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static string Vo_Get(string Action,int ID)
{
    Product p= new Product();

    DataSet ds= new DataSet();

    p.Action = Action;
    p.ID= ID;

    ds= VoGet_Get(obj);

    **string jsonVesselDetails = JsonConvert.SerializeObject(ds, Formatting.None);
    return jsonVesselDetails;**
}

我在这里得到我的结果

       [
  {
    "Pinky": 1,
    "Ponky": "Breakwater Dockk",

  },
  {
    "Pinky": 2,
    "Ponky": "Watson Island Dock",    
  },

但是,当我尝试使用 Ajax 调用并附加到表时,如果我尝试与 result 绑定,它会给出 Unexpected Token U,如果我尝试与 result.data 绑定,它会给出 Unexpected token O

最后我发现问题在于序列化,

我的 Ajax 调用是

                  $.ajax({
                type: "POST",
                contentType: "application/json; charset=utf-8",
                url: "Voyage.aspx/Vo_Get",
                data: "{'Action':'Get','ID':'68'}",
                dataType: "json",
                success: function (data) {
                    try {
                        alert("getdata! success" );

                        Get(data);

                    } catch (ex) {
                        alert(ex);
                    }
                },
                error: function (msg) {
                    alert("err: " + error);
                }
            });

4

3 回答 3

0

May be you are using the same variable data in success function as well. Try using the following,

success: function (result) {
   try {
        alert("getdata! success" );

        GetVessels(result);

        //Rebuild the table
        //BuildVesselTaggerInfo();

   } catch (ex) {
        alert(ex);
   }
},

note that I have changed from data to result.

于 2013-03-27T09:40:10.773 回答
0

首先验证您的方法期望什么样的JSON或数组结构。GetVessles

您可以通过直接提供方法的 JSON 响应VoyageVessel_Get或手动构建它来做到这一点。IE

 var data= [
 {
      "TerminalID": 1,
      "TerminalName": "Breakwater Dockk",
      "PortID": 1,
      "PortName": "Swire Pacific Offshore",
      "Column1": "08/03/13",
      "Column2": "16/03/13",
      "ServiceID": 2
  },
  {
      "TerminalID": 2,
      "TerminalName": "Watson Island Dock",
      "PortID": 2,
      "PortName": "Keppel Offshore",
      "Column1": "20/03/13",
      "Column2": "23/03/13",
      "ServiceID": 2
  }];

  GetVessels(data);

看看你的GetVessels作品是否适合这个对象。如果它没有找到它需要的结构(只有你可以这样做),然后构建它。

其次,您不能直接访问:successin的响应ASP.NET Web-Service

像这样访问它:

success: function (data) {
           var jsonData= data.d;
           GetVessels(jsonData);
 }

更新

如果您的对象包含日期时间字段,请尝试在Serializationie中指定 DateFormathandling

JsonSerializerSettings microsoftDateFormatSettings = new JsonSerializerSettings
            {
                DateFormatHandling = DateFormatHandling.MicrosoftDateFormat
            };
string serializedObject= Newtonsoft.Json
                     .JsonConvert
                     .SerializeObject(dsVoyages, microsoftDateFormatSettings);
于 2013-03-27T09:48:59.247 回答
0

我不知道 GetVessels 期待什么,但请尝试:

GetVessels(data.d);

即传递实际数据而不是整个响应对象。

于 2013-03-27T09:31:27.153 回答