node.js - 使用 axios 实现 DELETE 请求的最简单方法是什么?

标签 node.js vue.js vuejs2 axios http-delete

我一直未能成功地尝试找出如何解决以下错误,(第一个错误:)'OPTIONS http://localhost:3000/lists/5a9dca48cebb5a4e5fc1bfe9 404(未找到)'和(第二个错误:)'无法加载 http://localhost:3000/lists/5a9dca48cebb5a4e5fc1bfe9 :预检响应具有无效的 HTTP 状态代码 404。'。

最初,我按照与以下相同的方式定义了我的代码:https://github.com/20chix/Hotel_System_Vue.js_Frontend/blob/master/src/components/Hello.vue

看到很多与我的问题类似的帖子,但他们建议的解决方案都不适合我。

我后面使用的是Vue.js、Axios和Node.js,我的集合在MongoDb中定义如下:

   List: {_id:'', name:'', items:
                [ {
                    title: '',
                    category: ''            
                  }
                ]
           }

GetList.vue:

methods: {
  fetchLists(){
    let uri = 'http://localhost:3000/lists';
    axios.get(uri).then((response) => {
                  this.List = response.data;
                  console.log(this.List[3].items[0]);
                  console.log(this.List);
              });
  },

  DELETE(a_list, id){
    $("#myModal").modal('show');
    this.list = a_list;
    this._id = id;
  },
  deleteList : function(_id){
    // let uri = 'http://localhost:3000/lists/'+_id;
    // this.List.splice(_id, 1);
    axios.delete('http://localhost:3000/lists/'+_id)
    .then((response) => {
      this.fetchLists();
      //refreshes Application
      // window.location.reload();
    })
    .catch((error) => {
      console.log(error);
    });


  }

列表 Controller :

exports.delete_a_list = function(req, res)=>{
console.log(req.params);
List.deleteOne({req.params.listId}, function(err, list){
    if(err){res.json(err);};
    else
    {res.json({list: 'List successfully deleted'});}
  };
});

更新:

运行“npm install cors --save”后,它存储在我的 package.json 中。 服务器/package.json:

{
  "name": "api",
  "version": "1.0.0",
  "description": ":)",
  "main": "server.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node server.js"
  },
  "keywords": [
    ":)"
  ],
  "license": "ISC",
  "devDependencies": {
    "nodemon": "^1.17.1"
  },
  "dependencies": {
    "cors": "^2.8.4",
    "express": "^4.16.2",
    "mongoose": "^5.0.8",
    "npm": "^5.7.1"
  }
}

更新:

我也尝试了以下方法:

ObjectID = require('mongodb').ObjectID;

exports.delete_a_list = function(req, res){
    // console.log(req.params);
       List.deleteOne({
        _id: ObjectID(req.params.listId)}, function(err, list){
        if(err)
        res.json(err);
         res.json({list: 'List successfully deleted'});
         });
       };'

这会返回相同的错误,包括:

  xhr.js?ec6c:178 OPTIONS http://localhost:3000/lists/undefined 404 (Not Found)
dispatchXhrRequest @ xhr.js?ec6c:178
xhrAdapter @ xhr.js?ec6c:12
dispatchRequest @ dispatchRequest.js?c4bb:59
Promise.then (async)
request @ Axios.js?5e65:51
Axios.(anonymous function) @ Axios.js?5e65:61
wrap @ bind.js?24ff:9
deleteList @ GetList.vue?c877:131
boundFn @ vue.esm.js?efeb:190
click @ GetList.vue?d584:124
invoker @ vue.esm.js?efeb:2004
fn._withTask.fn._withTask @ vue.esm.js?efeb:1802
:1 Failed to load http://localhost:3000/lists/undefined: Response for preflight has invalid HTTP status code 404.

 createError.js?16d0:16 Uncaught (in promise) Error: Network Error
   at createError (createError.js?16d0:16)
   at XMLHttpRequest.handleError (xhr.js?ec6c:87)

最佳答案

谢谢大家的建议。

我找到了以下视频:https://www.youtube.com/watch?v=NEFfbK323Ok ,来自 The Net Ninja,并能够在更改我的代码以反射(reflect)他的特定方法后使其最终工作:

listRoutes.js:

app.route('/lists/:_id')
.get(lists.read_a_list)
// .update(lists.update_a_list)
.delete(lists.delete_a_list);

listController.js:

exports.delete_a_list = function(req, res){
// console.log(req.params);
List.findByIdAndRemove({_id: req.params._id}).then(function(list){
    res.send(list);
});

};

GetList.vue:

deleteList : function(_id, List){
axios.delete('http://localhost:3000/lists/'+_id, List)
.then(response => {
  this.List.splice(index, 1);
  //refreshes Application
  // window.location.reload();

  })
}

关于node.js - 使用 axios 实现 DELETE 请求的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49128455/

相关文章:

javascript - VueJS动态更新v-html内容

javascript - 如何在VUE组件的Scoped区域中使用JSON数据

node.js - 在 Windows 机器上同时运行两个不同版本的 Node.JS 服务器

node.js - Http服务器nodejs正在运行但不工作

vue.js - 为什么 service worker 会自动下载新内容,但不更新?

javascript - 如何在特定索引处启动 v-for 循环

javascript - 尝试用 Jest 制作一个简单的 Axios 模拟

javascript - 如何在 linux 上安装 electron.js?

javascript - Vue 计算属性未更新 - 未定义数据属性的奇怪行为

javascript - map 容器正在被另一个实例重用