我有这段代码来序列化我的 JSON 数据。
<div>
<!-- cut out HTML for brevity -->
<div class="divwidth">
<input type="button" onclick="javascript:postBackPart($(this).parent().parent().attr('id'));" value="Test Me" />
</div>
</div>
<script type="text/javascript">
function postBackPart(div_id) {
$.ajax({
url: '/Parts/Edit2',
type: 'POST',
data: $('#' + div_id).serialize(),
success: function (result) {
}
});
return false;
}
</script>
现在我看到其他帖子和网站使用 toJSON、stringfy 或序列化。我应该使用哪一个?我应该使用哪种方案而不是另一种方案?
注意:我使用的是 ASP.NET MVC 3,此代码来自 MVC 3 应用程序。