vue.js resource 请求后台得到json要怎么解析出来
1个回答
展开全部
这样试试 不过还是建议老老实实看文档。
new Vue({
el: '#post_from2',
ready: function () {
var self = this;
this.$http.post('./fun/post.php', {
type: "sydata"
}, {
headers: {
"X-Requested-With": "XMLHttpRequest"
},
emulateJSON: true
}).then(function (data) {
self.b = data;
})
},
data: {
b: {}
}
});
new Vue({
el: '#post_from2',
ready: function () {
var self = this;
this.$http.post('./fun/post.php', {
type: "sydata"
}, {
headers: {
"X-Requested-With": "XMLHttpRequest"
},
emulateJSON: true
}).then(function (data) {
self.b = data;
})
},
data: {
b: {}
}
});
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询