如何将选项传递给嵌入关系(包括)

时间:2016-06-30 11:16:30

标签: active-model-serializers

使用AMS包含在这样的控制器中:

(function () {
    var debug = require('debug')('app:server');
    var app = require('express')();
    var ws = require('express-ws')(app);

    var PORT = process.env.PORT || 1337;

    // enable cors
    app.use(function (req, res, next) {
        res.header("Access-Control-Allow-Origin", "*");
        res.header("Access-Control-Allow-Headers",
            "Origin, X-Requested-With, Content-Type, Accept");
        return next();
    });

    app.get('/', function (req, res, next) {
        debug('get route');
        res.send('hello');
        res.end();
    });

    app.ws('/', function (ws, req) {
        ws.on('message', function (msg) {
            debug('websocket message', msg);
        });
    });

    app.listen(PORT);
    debug('watch server started on port: ' + PORT);

    /// Broadcast the reload event to all clients.
    exports.reload = function () {
        ws.getWss().clients.forEach(function (client) {
            debug('*** broadcast reload message');
            client.send('reload');
        });
    };


}());

如何将选项传递给它?我想限制通知的数量(限制:N)&使用范围进行排序(范围:'inbox_sorting')

0 个答案:

没有答案