1

Node.js/Express.js に次のコードがあります

// Post a comment
app.post('/:id/comment', function(req, res){
    var snipp_id = req.params.id;
    var comment = req.body.comment;
    var line_num = req.body.line;

    models.Snipp.findById(snipp_id, function(err, snipp){
        snipp.comments.push({body: comment,line: line_num});
        res.send('OK');
        snipp.save();
    });
});

そして、cURLを実行すると:curl -X POST -H '{"comment":"test", "line":2}' http://localhost:3000/51dd25a56416c53f66000002/comment

次のエラーが表示されます。

SyntaxError: Unexpected token t
    at Object.parse (native)
    at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/express/node_modules/connect/lib/middleware/json.js:76:27)
    at IncomingMessage.EventEmitter.emit (events.js:92:17)
    at _stream_readable.js:910:16
    at process._tickCallback (node.js:415:13)

私は何を間違っていますか?! :)

ありがとう!

4

1 に答える 1