开发者

ASP.NET ScriptService prevent return of null properties in JSON

开发者 https://www.devze.com 2023-03-05 08:02 出处:网络
Basically I want to make my script service only serialise properties that are not null on an array of object I am returning...So this..

Basically I want to make my script service only serialise properties that are not null on an array of object I am returning... So this..

{"k":"9wjH38dKw823","s":10,"f":null,"l":null,"j":null,"p":null,"z":null,"i":null,"c":null,"m":0,"t":-1,"u":2}

would be

{"k":"9wjH38dKw823","s":10,"m":0,"t":-1,"u":2}

Does anyone know if this is possible?

Basically the reason for this is because null values are for unchanged properties. A local copy is kept in the javascript that is just updated to reduce traffic to the server. Change values a开发者_开发技巧re then merged.


You can create a custom JavaScriptConverter class for the JSON serialization process to use to handle your object, and then put the necessary logic in the Serialize method of that class to exclude the properties that are null.

This article has a clear step-by-step discussion of the process involved in creating it.

You probably would not need to actually implement the Deserialize method (can throw a NotImplementedException) if you are not passing that type of object in as an input parameter to your web services.

0

精彩评论

暂无评论...
验证码 换一张
取 消