- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个模型 UserB2b
扩展自 User
.我已使用 server.authEnabled
启用授权在引导脚本中,以便所有请求都通过 auth 中间件。
问题:每当我的 UserB2b
中有一个非数字用户名时模型,我得到一个 NaN
来自 AccessToken.findForRequest
的用户 ID在 loopback/common/model/access-token.js
.
这是我的模型。
访问 token
{
"name": "AccessToken",
"base": "AccessToken",
"idInjection": false,
"options": {
"validateUpsert": true
},
"mysql": {
"table": "AccessToken"
},
"properties": {
"ttl": {
"type": "Number",
"required": false,
"length": null,
"precision": 10,
"scale": 0,
"mysql": {
"columnName": "ttl",
"dataType": "int",
"dataLength": null,
"dataPrecision": 10,
"dataScale": 0,
"nullable": "Y"
},
"_selectable": true
},
"created": {
"type": "Date",
"required": false,
"length": null,
"precision": null,
"scale": null,
"mysql": {
"columnName": "created",
"dataType": "datetime",
"dataLength": null,
"dataPrecision": null,
"dataScale": null,
"nullable": "Y"
},
"_selectable": true
},
"userId": {
"type": "String",
"required": false,
"length": null,
"precision": 10,
"scale": 0,
"mysql": {
"columnName": "userId",
"dataType": "varchar",
"dataLength": null,
"dataPrecision": 10,
"dataScale": 0,
"nullable": "Y"
},
"_selectable": true
},
"id": {
"type": "String",
"id": true,
"required": false,
"length": 255,
"precision": null,
"scale": null,
"mysql": {
"columnName": "id",
"dataType": "varchar",
"dataLength": 255,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
},
"_selectable": false
},
"model": {
"type": "string",
"id": false,
"length": 100,
"precision": null,
"scale": null,
"mysql": {
"columnName": "model",
"dataType": "varchar",
"dataLength": 100,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
},
"_selectable": false
}
},
"validations": [],
"relations": {
"userB2B":{
"type":"belongsTo",
"model":"UserB2b",
"foreignKey":"userId"
}
},
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "DENY"
},
{
"accessType": "*",
"principalType": "ROLE",
"principalId":"$authenticated",
"permission": "ALLOW"
}
],
"methods": {}
}
用户B2b
{
"name": "UserB2b",
"base": "User",
"idInjection": false,
"options": {
"validateUpsert": true
},
"mysql": {
"table": "user_b2b"
},
"scope": {
"where": {
"deleted": 0
}
},
"properties": {
"username": {
"type": "String",
"id": true,
"required": true,
"length": 255,
"precision": null,
"scale": null,
"mysql": {
"columnName": "username",
"dataType": "varchar",
"dataLength": 255,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
},
"_selectable": false
},
"password": {
"type": "String",
"required": true,
"length": 1000,
"precision": null,
"scale": null,
"mysql": {
"columnName": "password",
"dataType": "varchar",
"dataLength": 1000,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
},
"_selectable": false
},
"name": {
"type": "String",
"required": true,
"length": 255,
"precision": null,
"scale": null,
"mysql": {
"columnName": "name",
"dataType": "varchar",
"dataLength": 255,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
},
"_selectable": false
},
"contactNumber": {
"type": "String",
"required": true,
"length": 255,
"precision": null,
"scale": null,
"mysql": {
"columnName": "contact_number",
"dataType": "varchar",
"dataLength": 255,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
},
"_selectable": false
},
"createdAt": {
"type": "Date",
"required": false,
"length": null,
"precision": null,
"scale": null,
"mysql": {
"columnName": "created_at",
"dataType": "timestamp",
"dataLength": null,
"dataPrecision": null,
"dataScale": null,
"nullable": "Y"
},
"_selectable": true
},
"updatedAt": {
"type": "Date",
"required": false,
"length": null,
"precision": null,
"scale": null,
"mysql": {
"columnName": "updated_at",
"dataType": "timestamp",
"dataLength": null,
"dataPrecision": null,
"dataScale": null,
"nullable": "Y"
},
"_selectable": true
},
"deleted": {
"type": "Number",
"required": false,
"length": null,
"precision": 3,
"scale": 0,
"mysql": {
"columnName": "deleted",
"dataType": "tinyint",
"dataLength": null,
"dataPrecision": 3,
"dataScale": 0,
"nullable": "Y"
},
"_selectable": true
},
"email": false,
"created": false,
"lastUpdated": false,
"credentials": false,
"challenges": false,
"status": false,
"verificationToken": false,
"realm": false,
"emailVerified": false
},
"validations": [],
"relations": {
"accessTokens": {
"type": "hasMany",
"model": "Accesstoken",
"foreignKey": "userName"
}
},
"methods": {}
}
这是我从调试器得到的原始数据包
<-- RowDataPacket
RowDataPacket {
id: 'BJVqc7CtRXzPVVtTyJqmUabijgLRRHBe3sqcCh0bh5NuGBIZCnY8nwLIGeB6dILv',
ttl: 12096000,
created: Tue May 24 2016 05:44:18 GMT+0000 (UTC),
model: 'UserB2b',
userId: 'max1' }
然后环回触发的查询是
SELECT `username`,`password`,`name`,`contact_number`,`created_at`,`updated_at`,`deleted` FROM `user_b2b` WHERE (`username`=?) AND (`deleted`=?) ORDER BY `username` LIMIT 1, params: ["NaN",0]
这里有什么需要更正的吗?
最佳答案
您的访问 token 中似乎有问题:
"userId": {
"type": "String",
"required": false,
"length": null,
"precision": 10,
"scale": 0,
"mysql": {
"columnName": "userId",
"dataType": "int",
您使用的类型是 int 并且您作为 varchar 项传递,这将抛出字符串不是数字 (NAN) 的异常。将目标类型更改为字符串/varchar 或更改您正在使用的与目标匹配的源数据类型。
希望对您有所帮助。
关于loopbackjs - 设置 userContext 环回时为 NaN userId,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37427936/
我在工作中使用 strongloop 的 loopbackjs 来实现 API。 对于模型 Cat我已经定义了一个远程方法,我们称之为 meow . 所以我可以这样做: GET /cats/{:id}
我在这样的环回中继承了一个模型- { "name": "MyModel", "base": "AnotherModel", "idInjection": false,
是否可以使用回送电子邮件数据源发送附件? 我在源文档中只能看到这些字段: @property {String} 到电子邮件收件人。必需的。 @property {String} 来自电子邮件发件人地址
我有两个通过 hasMany 关系关联的模型。 Customer hasMany CustomerPhones 创建新的 Customer 时,我想将相关的 CustomerPhones 作为单个请求
如何将用户、角色、用户角色映射等内置模型移动到我们创建的数据库而不是默认数据源:db?内置模型未在 Arc 中列出。 我尝试创建一个继承这些基本模型的新模型。但是,数据不会保存到新模型中。 请建议..
环回使用序列号作为型号ID。我可以在服务器端使用自己的ID生成器吗?我该怎么做呢? 最佳答案 可以在model definition file中将回送生成器(guid,uuid等)指定为id属性的默认
好吧,互联网公民,我需要一些帮助......我的 super 简单远程方法没有触发回调。相反,我收到此错误消息: /maestro/common/models/datalog.js:11
我正在使用环回进行 API 设计和数据建模。我使用 MySQL 作为我的数据库。尽管我的 API rest URL 成功返回了结果,例如/states/{id}/cities .我有以下模型,但似乎没
回送有两个区域,这些区域为静态文件设置了路径: server.js var path = require('path'); app.use(loopback.static(path.res
对于模型定义 product.js,我的 api 端点如下所示 api/products/9720?id_shop=1&id_lang=1 我需要访问 product.js 中的 id_shop 以在
我希望能够根据相关模型的属性进行过滤。例如,我有一个带有 Building 对象的 Class 对象。我想获得在某个建筑物中进行的类(class)列表。 这个过滤器 { "include":"
是否有规定的方法在环回中创建自定义验证器?例如,假设我想创建类似的东西: Validatable.validatesRange('aProperty', {min: 0, max: 1000}) 请注
我正在尝试向模型添加非静态远程方法。只需关注 code这里。不幸的是,我收到了一些错误消息。 以下是我的代码 User.prototype.lastOrder = function(callback)
我想做的事:有一个 html 表单,里面有一个文件输入。选择文件后,文件输入应上传文件,并获取文件 ID,因此提交表单时,文件 ID 会随表单一起发布并写入数据库。 简短版本:我想将元数据(例如 ID
是否有关于环回中错误处理的完整、一致且有据可查的信息来源? 诸如错误代码及其含义、与 http 状态的关系之类的东西。我已经阅读了他们的文档,但没有发现类似的内容。 我想翻译所有消息,以便为我的应用程
我有一个类似于下面的博客文章列表 [ { title: "Post #1", tags: ["foo", "bar"] }, {
'use strict'; module.exports = function (City) { City.GetCurrentPopulation = function (req) { var po
如何保证环回模型中多个字段组合的唯一性。下面是模型组织,我有两个字段名称和联系人,我希望这两个字段的组合在数据库中是唯一的。 例如:- 在创建组织时,两条记录可以在 中具有相同的值。 '姓名'字段而是
对于 LoopBack3,有一个帮助主题描述了如何将数据库更改实时流式传输到客户端:https://loopback.io/doc/en/lb3/Realtime-server-sent-events
我们的 MySQL 数据库设置了写集群和读集群,有没有办法设置 Strongloop Loopback 模型(例如用户)来写入 MySQL 主机 A 并从 MySQL 主机 B 读取? 最佳答案 如果
我是一名优秀的程序员,十分优秀!