这样试试呢? 不过还是建议老老实实看文档。
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: {}
}
});