我想通过REST API使用findById
功能
我定义了" ID"字符串全部由数字构成。
我尝试通过ID查找,系统似乎认出了它的号码 当ID是一个很大的数字时,我无法使用它" 9007199254740992" - 最大整数 我想将ID用作字符串。
请告诉我如何解决这个问题。
谢谢,
- 跟进 -
我的计划如下。
模型 - sample-model.json
{
"name": "SampleModel",
"base": "PersistedModel",
"idInjection": true,
"properties": {
"id": {
"type": "string",
"id": "true",
"required": true,
"doc": "MODEL ID"
},
"prop1": {
"type": "string",
"required": true
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": []
}
当我通过REST API访问findById
函数时,我总是得到以下调试消息。
strong-remoting:shared-method - findById - invoke with +11ms [ 9007199254740992, undefined, [Function: callback] ]
strong-remoting:shared-method - findById - result null +25ms
strong-remoting:rest-adapter Invoking rest.after for SampleModel.findById +6ms
express:router restRemoteMethodNotFound : /api/SampleModels/9007199254740993 +143ms
express:router restUrlNotFound : /api/SampleModels/9007199254740993 +8ms
express:router restErrorHandler : /api/SampleModels/9007199254740993 +2ms
strong-remoting:rest-adapter Error in GET /SampleModels/9007199254740993: Error: Unknown "SampleModel" id "9007199254740993".
答案 0 :(得分:3)
我自己解决了我的问题。
我们可以定义远程方法接受的参数"接受"选项。
内置findById
函数在PersistedModel中定义如下:
accepts: [
{ arg: 'id', type: 'any', description: 'Model id', required: true,
http: {source: 'path'}},
{ arg: 'filter', type: 'object',
description: 'Filter defining fields and include'}
],
type
定义为any
后,如果id
仅包含数字字符,则HttpContext.coerce
会更改为id
函数。
为了解决这个问题,我定义了SampleModel.findByIdCustom
并创建了另一个远程方法,如下所示:
SampleModel.js
SampleModel.findByIdCustom = function(id, filter, cb) {
SampleModel.findById(id, filter, cb);
}
//Define remote method
SampleModel.remoteMethod(
'findByIdCustom',
{
description: 'Find a model instance by id from the data source.',
accessType: 'READ',
accepts: [
{ arg: 'id', type: 'string', description: 'Model id', required: true,
http: {source: 'path'}},
{ arg: 'filter', type: 'object',
description: 'Filter defining fields and include'}
],
returns: {arg: 'data', type: 'user', root: true},
http: {verb: 'get', path: '/:id'},
rest: {after: SampleModel.convertNullToNotFoundError},
isStatic: true
}
);
//disable built-in remote method
SampleMethod.disableRemoteMethod('findById', true);
谢谢,
答案 1 :(得分:1)
只需将idInjection
设置为false
(以便环回不会自动为您的模型添加id属性),然后使用以下参数定义属性:
{
"idInjection": false,
"properties": {
"id": {
"type": "string",
"id": true,
"generated": true
}
}
}