1

我有一个这样的 Javascript 对象:

var jsonDataActual = { 
                       "source": [{
                                    "name": "testCaption0", 
                                    "desc": "testDescrip0", 
                                    "values": [{ 
                                                 "from": "/Date(1338811241074)/", 
                                                   "to": "/Date(1346760041074)/", 
                                                "label": "testLabel0", 
                                          "customClass": "GanttRed"
                                               }] 
                                 }], 
                       "navigate": "scroll", 
                        "scale": "weeks", 
                        "maxScale": "months", 
                        "minScale": "days", 
                    "itemsPerPage": 11, 
                     "onItemClick": function (data) { }, 
                      "onAddClick": function (dt, rowId) { } 

                 };

这对我来说可以。现在,由于我的要求和需要,我将整个对象(包括大括号 ie{ } 和分号 ;)作为服务器端(C#)上的字符串,并使用服务器端方法将其返回给 ajax 调用(web 方法):

在服务器端方法中,我执行以下操作:

return  new JavaScriptSerializer().Serialize(jsonData);

但是现在这整个返回的数据(内部Success: function(msg){ var s=msg.d})被视为字符串,因此它不起作用。

我试过这些:

  1. var obj = eval('{' + msg.d +'}'); (removing beginning and ending braces in msg.d)
         typeof(obj) is string. failed

  2. eval('var obj ='+msg.d);  (including beginning and ending braces in msg.d)
         typeof(obj) is string. failed

  3. var obj= jQuery.parseJson(msg.d);
        typeof(obj) is string. failed
  4. var obj = new Object();
     //var obj = {}; 
      obj=jQuery.parseJson(msg.d).
      typeof(obj) is string. failed.

请帮忙。如何将服务器端返回的 json 转换为对象?

为什么它不适合我???是因为我的 json 对象的结构吗?

为什么jsonDataActual对我有用,但在作为字符串发送时不起作用???

我看到了这个这个..

请帮忙.....

4

4 回答 4

2

找到了我的具体问题的解决方案。

我正在用我的 json 数据作为它的值来构造一个字符串变量。然后我会将此字符串返回给客户端函数(发出 ajax 请求的函数)。IE

服务器端方法

[WebMethod]
public static string GetJsonData()
{
    string jsonData = String.Empty;
    foreach(var dataItem in objEntireData.Items)
    {
         //  jsonData +=  
    }
   return new JavaScriptSerializer().Serialize(result);
} 

但它不起作用。因此,我没有构造一个字符串变量并对其进行序列化,而是编写了一个具有特定结构的类并将其发送到 return 语句中(序列化之后)。

即见下面的课程

    public class A
    {
        public A()
        {
            Values = new List<B>();
        }
        public string prop1 {get; set;}
        public List<B> Values { get; set; }
    }
    public class B
    {
        public string prop2 { get; set; }
        public string prop3 { get; set; }
    }

我会使用这个类如下:

[WebMethod]
public static string GetJsonData()
{
          List<A> objA = new List<A>();
          A objAItem = new A();
          foreach (var dbItem in objDataBaseValues)
          {
                objA.prop1 = "test";
                B objBItem = new B();
                b.prop2="value";
                b.prop3="value";
                objA.Values.Add(objBItem);
          }
        return new JavaScriptSerializer().Serialize(objA);

  }

将我的整个数据包装成一个类结构,然后序列化它对我有用。我的客户端函数成功地将它识别为一个对象,即

 $.ajax({
                    type: "POST",
                    url: "ProjectGanttChart.aspx/getData",
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (msg) {
                        var jsonData = jQuery.parseJSON(msg.d);
                        populateGantt(jsonData);
                     }
          }); 
于 2012-09-12T11:52:14.060 回答
0

试试这个

var json=(typeof msg.d) == 'string' ? eval('(' + msg.d + ')') : msg.d;
于 2012-09-04T07:56:59.957 回答
0

我以前遇到过很多次。当 WCF 服务将返回的数据解密为 JSON 时,字符串数据将始终带有“”。您应该始终从 WCF 服务返回对象或对象列表 - 即使这些是在您的服务级别创建的自定义对象。

因此,您的服务应该是:

[OperationContract]
        [WebGet(BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/Test?testId={testId}", RequestFormat = WebMessageFormat.Json,
                   ResponseFormat = WebMessageFormat.Json)]
        List<TestObjectJSON> Test(int testId);

然后,这将在服务端为您进行反序列化,而不使用序列化器。

于 2012-09-04T08:02:41.243 回答
0

如何将服务器端返回的 json 转换为对象?

你可以用它JSON.parse来做到这一点。

例子:

a = [1, 2];
x = JSON.stringify(a); // "[1,2]"
o = JSON.parse(x); // [1, 2];
于 2012-09-04T08:04:45.637 回答