0

フォローしているユーザーのリストを取得するメソッド getFollowing があります

UserSchema.statics.getFollowing = function(data, callback) {
    console.log("data: ", data);
    this.findOne({
        name : data.name
    }, function(err, docs) {
        if (err)
            callback("error " + err)
        else if (docs) {
            console.log("XXXX", docs.following_count)
            mongoose.model('User').findOne({
                                     _id : docs._id
                                }).populate('following', 'name screen_name avatar _id').exec(function(err, res) {
                                    if (err)
                                        callback(err);
                                    // console.log('The following is %s', res)                          

                                });         

            callback(docs.following);
        }
        else callback('{"error": "user-not-found"}');
    });
}

そして、クライアントに送信する docs.following リストのみをコールバックしたいです。

そのように UserSchema を定義します

var UserSchema = new Schema({
created_at : { type: Date, default: Date.now }
, name : String
,   hashedPass : String
,   salt: String
,   email : Email
,   avatar : {type: String, default: "images/default_profile.png" }
,   statuses_count : Number
,   screen_name : String
,   location : String
,   about : String
,   followers: [{ type: ObjectId, ref: 'User' }]
,   following: [{ type: ObjectId, ref: 'User' }]
,   followers_count : Number
,   following_count : Number
});
4

1 に答える 1

0

callback(docs.following);その呼び出しをコールバック(現在持っている場所)に移動したいと思います// console.log('The following is %s', res)。また、慣例により、コールバックの最初のパラメーターはエラーで、2 番目のパラメーターはデータであるため、 に変更callback(docs.following);callback(null, docs.following);ます。

于 2013-02-23T15:36:08.717 に答える