ajax中JSON.stringify()和JSON.parse()方法的使用
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
我们平时使用ajax向后台传递数据时,通常会传递json格式的数据,当然这里还有其它格式,比如xml、html、script、text、jsonp格式。
2、使用JSON.stringify(),将JSON对象转换为JSON类型的字符串示例如下:
json类型的数据包含json对象和json类型的字符串
JSON.stringify(),将JSON对象转换为JSON类型的字符串
JSON.parse(),将JSON类型的字符串转换为JSON对象
使用详情见下面4个示例。
<script>
var jsondata={"Participant":[{"Name_1":"1","Position_1":"1","Tel_1":"1","Mobile_1":"1","Ohter_1":"1"},{"Name_2":"1","Position_2":"1","Tel_2":"2","Mobile_2":"2","Ohter_2":"2"}]}
$.ajax({
type: "POST",
contentType: "application/json;charset=utf-8",
url: "ApplyEdit.aspx/SaveParticipant",
data: jsondata,
dataType: "json",
complete: function () { },
success: function (result) {
},
error: function (result, status) { }
});
</script>
2、使用JSON.stringify(),将JSON对象转换为JSON类型的字符串示例如下:
<script>
var jsondata={"Participant":[{"Name_1":"1","Position_1":"1","Tel_1":"1","Mobile_1":"1","Ohter_1":"1"},{"Name_2":"1","Position_2":"1","Tel_2":"2","Mobile_2":"2","Ohter_2":"2"}]}
$.ajax({
type: "POST",
contentType: "application/json;charset=utf-8",
url: "ApplyEdit.aspx/SaveParticipant",
data: JSON.stringify(jsondata),
dataType: "json",
complete: function () { },
success: function (result) {
},
error: function (result, status) { }
});
</script>
3、直接传递JSON类型的字符串,如下:
<script>
var jsondata="{\"name\":\""+name+"\",\"password\":\""+password+"\"}";
$.ajax({
type: "POST",
contentType: "application/json;charset=utf-8",
url: "ApplyEdit.aspx/SaveParticipant",
data: jsondata,
dataType: "json",
complete: function () { },
success: function (result) {
},
error: function (result, status) { }
});
</script>
4、使用JSON.parse(),将JSON类型的字符串转换为JSON对象,示例如下:
<script>
var jsondata="{\"name\":\""+name+"\",\"password\":\""+password+"\"}";
$.ajax({
type: "POST",
contentType: "application/json;charset=utf-8",
url: "ApplyEdit.aspx/SaveParticipant",
data: JSON.parse(jsondata),
dataType: "json",
complete: function () { },
success: function (result) {
},
error: function (result, status) { }
});
</script>
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)