无法在邮递员上向我的Node-js RESTFUL API发送发帖请求

时间:2018-12-18 09:21:03

标签: javascript node.js rest express

我已经创建了Nodejs restful api,但是我无法发送来自邮递员的发帖请求。当我直接写入数据库时​​,GET通过显示所有项目正确工作。 以下是我的模型文件

product.js

// transform the models to rest, crud

var restful = require('node-restful');

module.exports = function (app, route) {

    // setup the controller for REST

    var rest = restful.model('product',
        app.models.product).methods([
            'get',
            'put',
            'post',
            'delete'
        ]);

    //Register the endpoint

    rest.register(app, route);

    // return middleware

    return function (req, res, next) {
        next();
    };
};

0 个答案:

没有答案