electron入门(三)-- 使用axios请求网络
2018-11-04 本文已影响0人
SuperGino
使用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
}