- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试在 Operator 和 Group 这两个模型之间创建多对多关联。
两个两个模型是:
-Operator.js
var Operator = {
connection:'postgresql',
tableName: 'operator',
schema:true,
attributes: {
firstName: {
type: 'string',
required: true,
max: 64,
columnName: 'first_name'
},
lastName: {
type: 'string',
required: true,
max: 64,
columnName: 'last_name'
},
birthDate: {
type: 'date',
columnName: 'birth_date'
},
sex: {
type: 'string',
enum: ['M', 'F', 'N.A.'],
columnName: 'sex'
},
email: {
type: 'email',
required: true,
columnName: 'email'
},
login: {
type: 'string',
required: true,
max: 64
},
password: {
type: 'string',
required: true
},
createdAt: {
columnName: 'created_at'
},
updatedAt: {
columnName: 'updated_at'
},
groups:{
collection:'group',
via:'operators'
},
// Override toJSON instance method
// to remove password value
toJSON: function() {
var obj = this.toObject();
delete obj.password;
return obj;
}
},
// Lifecycle Callbacks
beforeCreate: function(values, next) {
bcrypt.hash(values.password, 10, function(err, hash) {
if(err) return next(err);
values.password = hash;
next();
});
}
};
module.exports = Operator;
-Group.js
var bcrypt = require('bcrypt');
var Group = {
connection:'postgresql',
tableName: 'group',
schema:true,
attributes: {
name: {
type: 'string',
required: true,
unique:true,
columnName: 'name'
},
createdAt: {
columnName: 'created_at'
},
updatedAt: {
columnName: 'updated_at'
},
operators:
{
collection:'operator',
via:'groups',
dominant:true
}
}
};
module.exports = Group;
我创建了包含两列 group_operators 和 operator_groups 的连接表 group_operators__operator_groups。
在 sails 控制台上,我尝试与此命令建立关联:
Operator.find(149).populate('groups').exec(function(e,r){
console.log(e);
r[0].groups.add(19);
console.log(r[0]);
r[0].save(function(err){
console.log(err);})
});
但是结果出现了错误:
null
{ groups: [],
sex: 'F',
email: 'nhjfhry@t5rjyi.girtj',
login: 'tryjrtyh',
password: '$2a$10$3pOYcOpWWcU868LBB0Gki./n9nrooXyDqSNYz1NJCkvQ480KT5uxO',
id: 149,
firstName: 'fgterier',
lastName: 'gdfgjdi',
birthDate: Thu Sep 25 2014 00:00:00 GMT+0200 (CEST),
createdAt: null,
updatedAt: Thu Oct 02 2014 12:45:14 GMT+0200 (CEST) }
[ { type: 'insert',
collection: 'group_operators__operator_groups',
criteria: { group_operators: 19, operator_groups: 149 },
values: { group_operators: 19, operator_groups: 149 },
err: [Error: Trying to '.add()' an instance which already exists!] } ]
Possibly unhandled Error: [object Object]
at Object.Promise$_rejecter [as reject] (/usr/lib/node_modules/sails/node_modules/waterline/node_modules/bluebird/js/main/promise.js:601:58)
at /usr/lib/node_modules/sails/node_modules/waterline/lib/waterline/model/lib/defaultMethods/save.js:154:16
at /usr/lib/node_modules/sails/node_modules/waterline/node_modules/async/lib/async.js:454:17
at /usr/lib/node_modules/sails/node_modules/waterline/node_modules/async/lib/async.js:444:17
at Array.forEach (native)
at _each (/usr/lib/node_modules/sails/node_modules/waterline/node_modules/async/lib/async.js:46:24)
at Object.taskComplete (/usr/lib/node_modules/sails/node_modules/waterline/node_modules/async/lib/async.js:443:13)
at processImmediate [as _immediateCallback] (timers.js:345:15)
如果我不创建连接表并尝试建立关联,sails 控制台会返回此错误:
Error (E_UNKNOWN) :: Encountered an unexpected error
error: relation "group_operators__operator_groups" does not exist
at Connection.parseE (/home/valentina/workspace/xtens-app/node_modules/sails- postgresql/node_modules/pg.js/lib/connection.js:534:11)
at Connection.parseMessage (/home/valentina/workspace/xtens-app/node_modules/sails-postgresql/node_modules/pg.js/lib/connection.js:361:17)
at Socket.<anonymous> (/home/valentina/workspace/xtens-app/node_modules/sails-postgresql/node_modules/pg.js/lib/connection.js:105:22)
at Socket.emit (events.js:95:17)
at Socket.<anonymous> (_stream_readable.js:764:14)
at Socket.emit (events.js:92:17)
at emitReadable_ (_stream_readable.js:426:10)
at emitReadable (_stream_readable.js:422:5)
at readableAddChunk (_stream_readable.js:165:9)
at Socket.Readable.push (_stream_readable.js:127:10)
Details: error: relation "group_operators__operator_groups" does not exist
我正在使用 sails 0.10.5、sails-postgresql ^0.10.8 和 postgresql 9.3.4。
我应该创建连接表吗?问题是什么?连接表为空,因此关联不存在。
谢谢!
瓦伦蒂娜
最佳答案
我认为你不能在 postgresql 中命名表组,因为它会与内部数据库表冲突。您可以尝试在模型中将 tableName 重命名为“groups”。如果那不起作用,你可以试试这个
运营商模式 //运算符.js
.
.
.
groups:{
collection:'group',
via:'id'
},
.
.
组模型
//Groups.js
.
.
operators:
{
collection:'operator',
via:'id',
dominant:true
}
.
.
关于node.js - sails postgresql 多对多关联不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26162511/
根据文档,sails lift 将始终尝试使用本地安装的 Sails 模块(即 app/node_modules/sails)运行您的应用。 但是当我运行 sails console 时,我可以从堆栈
在我的sails.js我正在尝试关闭服务和模型的默认全局变量,如下所示: sails: true, services: false, models: false 作为一种风格偏好,我想明确使用 sai
我正在用 sails 框架编写一些 api。我有一个 api 需要从两个表中获取数据,所以我想使用这样的 sql 查询: select * from table1 union select * fro
根据 this , 在创建与其他记录关联的新记录时,响应应包含填充的关联记录。 POST /pony { "name": "Pinkie Pie", "pet": 1 } 响应应该是这样的 {
我已经开始从事一个项目,并决定使用 Sails.js 构建 API。我以前没有使用 Sails 的经验,这就是为什么我需要您的推荐。 我需要为许多模型实现行级权限。例如,假设我只想允许对该记录的创建者
我在一个使用 sail.js 的项目中工作,一切正常,但每次我修改某些内容时,我都必须重新启动“sails lift”。是否没有一个选项可以让我在服务器在线时工作并查看我所做的所有更改? 据了解,问题
当sails.js 模块上的电子邮件验证规则失败时,服务器正在崩溃。 这是我的模块的片段: //用户的电子邮件地址 email: { type: 'string', email: true,
我正在尝试在客户端使用 Sails.js 和 sails.io.js 创建一对一聊天。 我可以让 io.socket.get 和 io.socket.post 工作,但是我无法从任何一个 收到任何东西
我刚刚开始使用 Sails.js,它是一个了不起的框架。但是我遇到了一些情况,我找不到谷歌的解决方案,所以我来这里寻求帮助。 我有一个 Controller 连接到另一个远程服务,该服务使用非常旧的
我已经使用 npm install sails -g 成功安装了 sails我运行的是 Windows 7。当我尝试运行“sails”命令时,收到错误消息“找不到命令”。然后我将相应的 bin 文件夹
我正在使用带有船长-s3适配器的船长来处理我的 sails 应用程序中的文件上传。 当文件正常发送时它工作正常,但是当请求中止时我收到未处理的错误消息并且 sails 崩溃。 events.js:85
像 Rails 一样,有什么方法可以向验证器添加自定义错误消息吗? 喜欢: if(this.password != this.passwordConfirmation){ this.errors
我已经使用 npm install sails -g 成功安装了 sails我运行的是 Windows 7。当我尝试运行“sails”命令时,收到错误消息“找不到命令”。然后我将相应的 bin 文件夹
我需要查询关联表(由 sails 创建),所以我不能使用“Model.query”,因为我没有这个表的模型。我找不到解决方案。谢谢 最佳答案 您可以使用其他模型对象,例如 User.query(sql
仅当满足某些条件时,我才需要加密密码。 beforeUpdate: function (value, cb) { User.findOne(value.id) .exec(function (er
在我的风帆应用程序中,我按如下方式编辑 config/models.js 文件以在提升应用程序时清理数据库。 migrate: 'drop', connection: 'mongodb' 但是
我将sails 升级到@^1.0.0 版本,在开发API 时,我想使用Service,但Sails 文档建议现在使用Helper。而且我并没有真正习惯于使用新的方法来识别助手、构建脚本或 Action
我试图弄清楚如何禁用 Sails.js 中模型的自动数据库迁移。 我知道你可以设置migrate: 'safe'在模型中,但是有没有办法为所有模型指定这个? 最佳答案 实际上,有办法做到这一点。 OR
我正在开始一个新项目,我想使用 AngularJS 作为前端,使用 SailsJS 作为后端。我需要为不同的客户分离数据库。因此,每个客户端都必须有自己的数据库。 我没有找到如何在帆和水线中制作这个。
我从 SailsJS 开始和 MySQL ,我的数据库中有很多表。所以,我不知道 SailsJS有一个工具可以从数据库中生成模型,比如 Database First在 Entity Framework
我是一名优秀的程序员,十分优秀!