vue-resource是Vue的插件,用来与远程服务器端通信,相当于ajax
在项目中安装
npm install vue-resource --save
引入
在main.js中
import VueResource from 'vue-resource'
Vue.use(VueResource)
使用
<script>
export default {
name: 'hello',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
},
created:function (){
this.$http.get('/api/cakeList/').then((response) => {
console.log(response.data);
})
}
}
</script>
运行的时候,要启动Apache
网友评论