Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?

前端 未结 6 1482
清歌不尽
清歌不尽 2021-02-05 21:33

I\'ve found ScriptingJsonSerializationSection but I\'m not sure how to use it. I could write a function to convert the object to a JSON string manually, but since .Net can do it

相关标签:
6条回答
  • 2021-02-05 21:51

    This should do the trick

    Dim jsonSerialiser As New System.Web.Script.Serialization.JavaScriptSerializer
    Dim jsonString as String = jsonSerialiser.Serialize(yourObject)
    
    0 讨论(0)
  • 2021-02-05 21:57

    Try

    System.Web.Script.Serialization.JavaScriptSerializer
    

    or Check out JSON.org there is a whole list of libraries written to do exactly what you want.

    0 讨论(0)
  • 2021-02-05 22:01

    In the System.Web.Extensions assembly, version 3.5.0.0, there's a JavaScriptSerializer class that should handle what you want.

    0 讨论(0)
  • 2021-02-05 22:02

    I think what you're looking for is this class:

    System.ServiceModel.Web.DataContractJsonSerializer

    Here's an example from Rick Strahl: DataContractJsonSerializer in .NET 3.5

    0 讨论(0)
  • 2021-02-05 22:06

    Since the JavaScriptSerializer class is technically being deprecated, I believe DataContractJsonSerializer is the preferable way to go if you're using 3.0+.

    0 讨论(0)
  • 2021-02-05 22:11

    Well, I am currently using the following extension methods to serialize and deserialize objects:

    using System.Web.Script.Serialization;
    
    public static string ToJSON(this object objectToSerialize)
    {
      JavaScriptSerializer jss = new JavaScriptSerializer();
      return jss.Serialize(objectToSerialize);
    }
    
    /// <typeparam name="T">The type we are deserializing the JSON to.</typeparam>
    public static T FromJSON<T>(this string json)
    {
      JavaScriptSerializer jss = new JavaScriptSerializer();
      return jss.Deserialize<T>(json);
    }
    

    I use this quite a bit - be forewarned, this implementation is a bit naive (i.e. there are some potential problems with it, depending on what you are serializing and how you use it on the client, particularly with DateTimes).

    0 讨论(0)
提交回复
热议问题