在存储模型strongloop之前添加当前用户

时间:2015-04-18 23:20:55

标签: node.js strongloop

我最近从Strongloop框架开始,

我做了一个简单的模型

{
  "name": "income",
  "plural": "incomes",
  "base": "PersistedModel",
  "idInjection": true,
  "properties": {
    "description": {
      "type": "string",
      "required": true
    },
    "amount": {
      "type": "number",
      "required": true
    },
    "when": {
      "type": "date",
      "required": true
    }
  },
  "validations": [],
  "relations": {
    "user": {
      "type": "belongsTo",
      "model": "User",
      "foreignKey": ""
    }
  },
  "acls": [],
  "methods": []
}

我希望与当前会话用户和收入记录建立关系。但我无法找到一个例子。

1 个答案:

答案 0 :(得分:0)

您可以使用当前上下文,链接底部有一个代码示例,但您必须将其展开:

Link