我刚刚开始使用Amistad和Mongoid,我发现current_user.invite(@user)没有保存到Mongo。我已经在控制台和Rails应用程序中完成了这个,我确定该方法确实有效,因为该方法返回true,但数据不会持久存在。有没有其他人有这个问题?我的mongo db确实有效。我用它保存了各种各样的数据,但Amistad朋友的方法不是。
这是控制器动作:
def invite_friend
@user = User.find params['id']
res = current_user.invite(@user)
current_user.last_name = 'hamilton123'
current_user.save
respond_to do |format|
format.html
format.js{ render :js => "$('#friend_#{params['id']}').text('Pending')" }
end
end
这是运行.invite()之后的一些日志输出。我也做了一个current_user.save()只是为了确保我能看到Mongo输出一个保存
MONGODB yansn_development['system.namespaces'].find({})
MONGODB yansn_development['users'].find({:_id=>BSON::ObjectId('4f8b100dbf0d820513000007')}).limit(-1).sort([[:_id, :asc]])
MONGODB yansn_development['users'].find({:_id=>BSON::ObjectId('4f8b0fd2bf0d82055b000001')}).limit(-1).sort([[:_id, :asc]])
MONGODB yansn_development['users'].update({"_id"=>BSON::ObjectId('4f8b100dbf0d820513000007')}, {"$set"=>{"last_name"=>"hamilton123", "updated_at"=>2012-04-15 19:06:21 UTC}})
不应该为invite()方法保存吗?
答案 0 :(得分:0)
根据Amistad source,如果用户为self
或者用户已经存在友谊,则该方法将返回false,具体方式如下:
def invite(user)
return false if user == self || find_any_friendship_with(user)
Friendship.new(:user_id => self.id, :friend_id => user.id).save
end
我会检查您使用find
回复的用户是否实际上是您期望的用户,并且与用户之间没有现成关系。