vue如何获取另一个页面的数据
vue如何获取另一个页面的数据
·
使用axios
import axios from 'axios';
export default {
data() {
return {
data: null
}
},
created() {
axios.get('/api/data').then(response => {
this.data = response.data;
});
}
}
使用 vue-resource
import VueResource from 'vue-resource';
Vue.use(VueResource);
export default {
data() {
return {
data: null
}
},
created() {
this.$http.get('/api/data').then(response => {
this.data = response.body;
});
}
}
其中 ‘/api/data’ 是请求地址,可以替换成你需要请求的地址.
更多推荐
已为社区贡献1条内容
所有评论(0)