我正在尝试通过php文件从数据库中获取一些数据。当我尝试加载数据时,在浏览器控制台中收到以下错误消息:“ GET http://localhost:8080/api/call_evm.php 404(未找到)”。
这是相应的方法:
methods: {
lade_daten: function () {
let vm = this;
$.getJSON("/api/call_evm.php", function(result){
vm.datas = result;
});
}
},
mounted(){
this.lade_daten();
}
我的vue.config.js看起来像这样:
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost/evm-formular/api',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
},
runtimeCompiler: true,
configureWebpack: {
devtool: 'source-map'
},
chainWebpack: config => {
config.externals({
jquery: 'jQuery',
select2:'select2'
})
}
}
当我将鼠标箭头悬停在关键字模块上时,我得到以下工具提示: “无法解析的变量或类型模块”
是什么意思? 我该怎么办?
非常感谢!