Axios.get重复两次基本URL

时间:2019-04-03 20:25:56

标签: javascript string axios base-url

我正在尝试使用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以及网站本身都设置为空字符串,但是都没有解决问题。我不确定还有什么尝试。

0 个答案:

没有答案