所以我将一个 Json 对象发送到我的服务器,并且我想将它转换为我称之为 PersonalPreferences 的强类型用户类型对象。
这是JS
{
"PersonalPreferences": [
{
"FavoriteFood": "Pasta with butter and cheese"
},
{
"FavoriteSport": "Submission Wrestling"
},
{
"FavoriteGame": "Starcraft 2"
},
{
"FavoriteMusic": "Hip Hop"
}
]
}
我创建了一个与我发送的 Json 对象匹配的类。
[DataContract]
public class PersonalPreferences
{
[DataMember]
public string FavoriteFood { get; set; }
[DataMember]
public string FavoriteSport { get; set; }
[DataMember]
public string FavoriteGame { get; set; }
[DataMember]
public string FavoriteMusic { get; set; }
public PersonalPreferences()
{
}
public PersonalPreferences(string favoriteFood, string favoriteGame, string favoriteMusic, string favoriteSport)
{
this.FavoriteFood = favoriteFood;
this.FavoriteGame = favoriteGame;
this.FavoriteMusic = FavoriteMusic;
this.FavoriteSport = favoriteSport;
}
}
这是我的处理程序,它接收请求并将其转换为用户类型对象。我的问题是 PersonalPreference 对象是空的。jsSerializer.Deserialize 调用空构造函数,并且来自 Json 对象的值不会传递给 PersonalPreference 对象。我检查了请求中是否存在 Json 值作为字符串。
[WebService(Namespace = "http://localhost:53243")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class JSonTestHandler : IHttpHandler, System.Web.SessionState.IReadOnlySessionState
{
public void ProcessRequest(HttpContext context)
{
string jsonData = new StreamReader(context.Request.InputStream, System.Text.Encoding.UTF8).ReadToEnd();
var jsSerializer = new JavaScriptSerializer();
var personalPreferences = jsSerializer.Deserialize(jsonData, typeof(PersonalPreferences));
}}