1

流星サイトに追加したい管理機能がいくつかあり、それらを作成、非表示、保護するための最良の方法は何ですか?

ありがとう

4

1 に答える 1

1

Meteor.methodsを使用できます。server/コードをEgというフォルダに配置して、サーバーにのみ含めるようにしてください。

server/admin.js

Meteor.methods({
  foo: function (arg1, arg2) {
    // confirm that the user is an admin
    if ( ! this.user.isAdmin )
      throw new Meteor.Error(401, "You are not authorized to perform this action");
    // perform task
    return "some return value";
  }
});
于 2013-02-02T22:42:34.543 に答える