web-dev-qa-db-ja.com

sails.jsで構成変数を作成しますか?

私のアプリをExpressから sails.js に変換しています-Sailsでこのようなことができる方法はありますか?

私から app.js Expressのファイル:

var globals = {
    name: 'projectName',
    author: 'authorName'
};

app.get('/', function (req, res) {
    globals.page_title = 'Home';
    res.render('index', globals);
});

これにより、テンプレートに変数をハードコーディングすることなく、すべてのビューでこれらの変数にアクセスできます。しかし、どのように/どこでSailsでそれを行うかわからない。

42
user2688473

config/フォルダーに独自の構成ファイルを作成できます。たとえば、config/myconf.jsに設定変数を指定します:

module.exports.myconf = {
    name: 'projectName',
    author: 'authorName',

    anyobject: {
      bar: "foo"
    }
};

そして、グローバルsails変数を介して任意のビューからこれらの変数にアクセスします。

ビューで:

<!-- views/foo/bar.ejs -->
<%= sails.config.myconf.name %>
<%= sails.config.myconf.author %>

サービス

// api/services/FooService.js
module.exports = {

  /**
   * Some function that does stuff.
   *
   * @param  {[type]}   options [description]
   * @param  {Function} cb      [description]
   */
  lookupDumbledore: function(options, cb) {

    // `sails` object is available here:
    var conf = sails.config;
    cb(null, conf.whatever);
  }
};

// `sails` is not available out here
// (it doesn't exist yet)
console.log(sails);  // ==> undefined

モデル内:

// api/models/Foo.js
module.exports = {
  attributes: {
    // ...
  },

  someModelMethod: function (options, cb) {

    // `sails` object is available here:
    var conf = sails.config;
    cb(null, conf.whatever);
  }
};

// `sails is not available out here
// (doesn't exist yet)

コントローラー内:

注:これはポリシーでも同じように機能します。

// api/controllers/FooController.js
module.exports = {
  index: function (req, res) {

    // `sails` is available in here

    return res.json({
      name: sails.config.myconf.name
    });
  }
};

// `sails is not available out here
// (doesn't exist yet)
92
ataman