javascript - 运用vue-cli做项目,如何向后台请求真实的数据呢?
世界只因有你
世界只因有你 2017-05-19 10:36:41
0
5
709

运用vue-cli做项目,如何向后台请求真实的数据呢?

世界只因有你
世界只因有你

全部回复(5)
小葫芦

后台没给你开接口嘛?

PHPzhong

可以使用vue-resource

//get || post
this.$http.get(url).then((res) => {
    // do something
}, (res) => {
    // error callback
})
phpcn_u1582

可以使用vue-resource进行请求
楼主可能遇到的是跨域问题?
如果后台是php的话请在接收的方法中加入

header('Access-Control-Allow-Credentials:true');
header("Access-Control-Allow-Origin:*");
header('Access-Control-Allow-Headers:x-requested-with,content-type');
Peter_Zhu

axios,jquery

大家讲道理

楼主的意思是怎么请求后端数据,并不是说没有接口,。配置个代理就好了,不用跨域,在config下的index.js里有个proxyTable配置下就好了。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板