vue 请求接口方法 get。post
一、vue-resource库
https://www.runoob.com/vue2/vuejs-ajax.html
二、axios库(vue2.0使用)
https://www.runoob.com/vue2/vuejs-ajax-axios.html
then()方法是异步执行
就是当.then()前的方法执行完后再执行then()内部的程序
这样就避免了,数据没获取到等的问题
this.$http.get('api/getNewsList')
.then((res) => {
this.newsList = res.data
}, (err) => {
console.log(err)
})