2

以下のように 2 つのスキーマ オブジェクトを定義しました (mongodb で使用するため)。

var User = describe('User', function () {
    property('name', String);
    property('email', String);
    property('password', String);
    set('restPath', pathTo.users);
});

var Message = describe('Message', function () {
    property('userId', String, { index : true });
    property('content', String);
    property('timesent', Date, { default : Date });
    property('channelid', String);
    set('restPath', pathTo.messages);
});

Message.belongsTo(User, {as: 'author', foreignKey: 'userId'});
User.hasMany(Message, {as: 'messages',  foreignKey: 'userId'});

しかし、関連するメッセージ オブジェクトにアクセスできません。

action(function show() {
    this.title = 'User show';

    var that = this;
    this.user.messages.build({content:"bob"}).save(function(){
        that.user.messages(function(err,message){
            console.log('Messages:');
            console.log(message);
        });
    });
    // ... snip ...
    }
});

メッセージ コレクションに新しいメッセージが追加されているにもかかわらず、メッセージの配列は常に空です。

mongo シェルを実行したところ、期待どおりにメッセージが表示されたので、mongo アダプターdb.Message.find({userId:'517240bedd994bef27000001'})に問題があるのではないかと考え始めています。

CompoundJS の 1対多の関係も同様の問題を示しています (と思います)。

ドキュメントから解決できる限り、これはうまくいくはずです。私は何を間違っていますか?

編集:

Anatoliy の提案に従ってスキーマに変更を適用した後、mongo データベースを削除して npm を更新しましたが、新しいユーザーを作成しようとすると、次のようになりました。

Express
500 TypeError: Object #<Object> has no method 'trigger' in users controller during "create" action
at Object.AbstractClass._initProperties (/mnt/share/chatApp2/node_modules/jugglingdb/lib/model.js:123:10)
at Object.AbstractClass (/mnt/share/chatApp2/node_modules/jugglingdb/lib/model.js:31:10)
at Object.ModelConstructor (/mnt/share/chatApp2/node_modules/jugglingdb/lib/schema.js:193:23)
at Function.AbstractClass.create (/mnt/share/chatApp2/node_modules/jugglingdb/lib/model.js:222:15)
at Object.create (eval at (/mnt/share/chatApp2/node_modules/compound/node_modules/kontroller/lib/base.js:157:17), :16:10)....

EDIT2: アクションを作成:

action(function create() {
    User.create(req.body.User, function (err, user) {
        respondTo(function (format) {
            format.json(function () {
                if (err) {
                    send({code: 500, error: user && user.errors || err});
                } else {
                    send({code: 200, data: user.toObject()});
                }
            });
            format.html(function () {
                if (err) {
                    flash('error', 'User can not be created');
                    render('new', {
                        user: user,
                        title: 'New user'
                    });
                } else {
                    flash('info', 'User created');
                    redirect(path_to.users);
                }
            });
        });
    });
});
4

1 に答える 1

1

ObjectID の問題です。スキーマ コードで:

property('userId', String, { index : true });

したがって、userId は文字列ですが、user.messagesuser.id を呼び出すと使用されます (これは ObjectID です)。解決策として、スキーマ定義からこの行を削除してください。

PSあなたの場合、関係を次のように定義できます:

Message.belongsTo('author', {model: User, foreignKey: 'userId'});
User.hasMany('messages');
于 2013-05-08T17:24:14.340 に答える