我正在尝试使用axios.get()
访问网站的后端并返回JSON
。但是服务器返回:
GET http://philosofound.com/philosofound.com/questions 404
实际.get()调用:
getQuestion() {
axios({
method: 'get',
url: '/questions'
}).then(function(response) {
console.log(response);
})
}
我尝试将基本URL以及网站本身都设置为空字符串,但是都没有解决问题。我不确定还有什么尝试。