前端学习笔记

vue-resource的使用

2017-10-06  本文已影响16人  简小咖

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

上一篇下一篇

猜你喜欢

热点阅读