美文网首页
VUE调用外部API的跨域问题

VUE调用外部API的跨域问题

作者: muroujue | 来源:发表于2018-05-18 13:30 被阅读0次

想使用图灵机器人实现微信聊天功能,调用web API实现很简单,但是中间遇到了接口跨域问题。
解决方法是在config/index.js配置api代理

proxyTable: {
    '/api': {
    target: 'http://openapi.tuling123.com/openapi',
    changeOrigin: true    //此项设置允许跨域
    // pathRewrite: {
    //     '^/api': '/api'
    // }
    }
}

相关文章

网友评论

      本文标题:VUE调用外部API的跨域问题

      本文链接:https://www.haomeiwen.com/subject/yzlgdftx.html