美文网首页
electron入门(三)-- 使用axios请求网络

electron入门(三)-- 使用axios请求网络

作者: SuperGino | 来源:发表于2018-11-04 17:35 被阅读0次

    使用electron-vue,安装的时候会提示是否安装axios库,如果选择了是的话,会在main.js里面找到下面的代码

    if (!process.env.IS_WEB) Vue.use(require('vue-electron'))
    Vue.http = Vue.prototype.$http = axios
    

    get操作

    this.$http.get('http://www.baidu.com')
            .catch(function (error) {
              console.log(error);
            })
            .then(function (response) {
                console.log(response);
            });
    

    post操作

    如果遇到了跨域的问题


    image.png

    参考官方文档,添加以下属性就可以解决问题
    webPreferences: {
    webSecurity: false
    }

    相关文章

      网友评论

          本文标题:electron入门(三)-- 使用axios请求网络

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