我创建了一个带有KnockoutJS视图模型的页面。我想使用Web API将数据发布到我的服务器。
我使用这个AJAX帖子:
$.ajax({
url: "/api/blogpost",
contenttype: "application/x-www-form-urlencoded",
data: '=' + encodeURIComponent(ko.toJSON(self.Blog)),
type: "POST",
dataType: "JSON",
timeout: 10000,
success: function (Result) {
},
error: function (xhr, status) {
alert(status + " - " + xhr.responseText);
}
});
将JSON数据发送到我的Web API方法。 这是发送到服务器的JSON:
{
"BlogTitle": "Sample Post",
"BlogHTML": "<p><strong>Sample JSON Blog Post</strong></p>\n\n<h1><strong>It never works :( </strong></h1>\n",
"BlogThumbnail": "http://mysystemURL/SamplePost/What.jpg",
"BlogSummary": "This is a sample post",
"BlogFQURL": "Sample_Post",
"BlogTags": [
"json",
"devlopment",
"newtag",
""
],
"BlogCategory": 1
}
我的WEB API方法正确接收了JSON数据。 RAW字符串值如下所示:
"{\"BlogTitle\":\"Sample Post\",\"BlogHTML\":\"<p><strong>Sample JSON Blog Post</strong></p>\\n\\n<h1><strong>It never Works :(</strong></h1>\\n\",\"BlogThumbnail\":\"http://mysystemURL/SamplePost/What.jpg\",\"BlogSummary\":\"This is a sample post\",\"BlogFQURL\":\"Sample_Post\",\"BlogTags\":\"[\\\"json\\\",\\\"devlopment\\\",\\\"newtag\\\",\\\"\\\"]\",\"BlogCategory\":1}"
当我在我的数据上使用JSON visulizer时,我得到了这个:
我使用此BlogPost vari = JsonConvert.DeserializeObject<BlogPost>(value);
反序列化我的对象,但所有内容都 null
我的BlogPost对象如下所示:
public class BlogPost
{
public int BlogPostID { get; set; }
public string BlogPostTitle { get; set; }
public string BlogPostHTML { get; set; }
public string BlogPostThumbnailURL { get; set; }
public string BlogPostSummary { get; set; }
public string BlogPostFQURL { get; set; }
public int BlogPostCategory { get; set; }
public List<TagDTO> BlogPostTags { get; set; }
}
我真的很难过......任何帮助都会非常感激!
答案 0 :(得分:6)
您的商家名称不匹配。 C#对象的属性为BlogPost*
,JSON为Blog*
,没有帖子。
在Javascript或C#端更正名称,或使用JsonProperty
属性指定序列化属性的名称。