一、问题

在用axios获取本地json数据时,总是报404错误。
百思不得其解。

二、经过

看网友们都是把本地json文件放在static文件中。
我写的项目存放在assets中,恍然大悟,应该是文件位置。

三、结果

文件改存为static
axios({
    method: method,
    url: url,
    data: method === 'POST' || method === 'PUT' ? params : null,
    params: method === 'GET' || method === 'DELETE' ? params : null,
    baseURL: closeRoot ? '../static/json/' : root,
    withCredentials: false
  }).then(function (res) {
  // code...
Logo

前往低代码交流专区

更多推荐