0
リソースファイルヘルパー/ json.jsonVueJSリソースは、コンテンツ
{
"content": {
"content_body": "<a href='#' v-on:click.prevent='getLink'>{{ button }}</a>",
"content_nav": "",
}
}
Vueのmain.jsファイル
new Vue({
el: 'body',
data: {
text: 'Lorem sss',
},
methods: {
getLink: function(){
this.$http.get('http://localhost/vuejs/helper/json.json').then((resp) => {
this.$set('text', resp.data.content.content_body);
}, (resp) => {
console.log('error');
})
}
}
})
出力をリロードボタンをクリックします。データをロードできません。
ChechのdevのツールであなたのXHRタブ。また、 '(resp)=> {'内部で 'console.log(this)'を実行しようとすると、Vueインスタンスに正しくバインドされていますか? – GONG
https://s9.postimg.io/42jwh82kv/Ekran_Resmi_2016_09_05_13_45_35.png –