MEAN Stack CRUD更新404错误

时间:2013-12-03 01:23:26

标签: node.js angularjs express crud

抬起头,noob通过。尝试构建一个MEAN堆栈待办事项列表。到目前为止,除了更新选项之外,我已经完成了所有工作。我所做的是设置应用程序,以便提示用户写入他们想要更新的项目。所以说他们添加了项目' ddd。'然后,更新按钮将出现在项目旁边,然后将向用户发出提示,要求他们输入新项目。问题是每当用户确实输入新项目来替换旧项目时,没有任何反应,而是在命令提示符中出现404错误。任何帮助将非常感激。您可以在下面找到我的控制器,路线,index.html

路由/ API

var Todo = require('./models/todo');

module.exports = function(app) {

// api ---------------------------------------------------------------------
// get all todos
app.get('/api/todos', function(req, res) {

    // use mongoose to get all todos in the database
    Todo.find(function(err, todos) {

        // if there is an error retrieving, send the error. nothing after res.send(err) will execute
        if (err)
            res.send(err)

        res.json(todos); // return all todos in JSON format
    });
});

// create todo and send back all todos after creation
app.post('/api/todos', function(req, res) {

    // create a todo, information comes from AJAX request from Angular
    Todo.create({
        text : req.body.text,
        done : false
    }, function(err, todo) {
        if (err)
            res.send(err);

        // get and return all the todos after you create another
        Todo.find(function(err, todos) {
            if (err)
                res.send(err)
            res.json(todos);
        });
    });

});

// delete a todo
app.delete('/api/todos/:todo_id', function(req, res) {
    Todo.remove({
        _id : req.params.todo_id
    }, function(err, todo) {
        if (err)
            res.send(err);

        // get and return all the todos after you create another
        Todo.find(function(err, todos) {
            if (err)
                res.send(err)
            res.json(todos);
        });
    });
});

//update to do
app.put('/api/todos/_id', function(req, res) {
        Todo.findById(req.params._id, function(err, todos){
            todo.text = req.body.text;
            console.log(todos);
            todos.save(function() {
                if (!err) {
                    res.send(todos);
                } else if (err) {
                    res.send(err);
                }
            });
        });
    });

// application -------------------------------------------------------------
app.get('*', function(req, res) {
    res.sendfile('./public/index.html'); // load the single view file (angular will handle the page changes on the front-end)
});
};

控制器

var baselTodo = angular.module('baselTodo', []);

function mainController($scope, $http) {
$scope.formData = {};

// when landing on the page, get all todos and show them
$http.get('/api/todos')
    .success(function(data) {
        $scope.todos = data;
    })
    .error(function(data) {
        console.log('Error: ' + data);
    });

// when submitting the add form, send the text to the node API
$scope.createTodo = function() {
    $http.post('/api/todos', $scope.formData)
        .success(function(data) {
            $('input').val('');
            $scope.todos = data;
        })
        .error(function(data) {
            console.log('Error: ' + data);
        });
};

// delete a todo after checking it
$scope.deleteTodo = function(id) {
    $http.delete('/api/todos/' + id)
        .success(function(data) {
            $scope.todos = data;
        })
        .error(function(data) {
            console.log('Error: ' + data);
        });
};

$scope.updateTodo = function(id) {
   $scope.newItem = prompt("Please enter your new item:", "");
    $http.put('/api/todos/' + id, {formData: $scope.newItem}).success(function(data) {
            $scope.todos = data;
        });

        $http.get('/api/todos').success(function(data) {
            $scope.todos = data;
        });
};

};

1 个答案:

答案 0 :(得分:1)

看起来,在你的路线api:

app.put('/api/todos/_id', function(req, res) {

您忘记了路径中的冒号,因此您无法访问该变量。尝试:

app.put('/api/todos/:_id', function(req, res) {