0

我在 mongodb 数据库中使用了带有 mongoid gem 的 rails3.2.3。我有以下代码
user = User.find_by(username: login)
但是当发布的用户名与任何文档的用户名不匹配时,此代码会出错。错误是这样的:我没有任何想法来解决这个问题。请帮我。提前致谢。
Problem:
Document(s) not found for class User with id(s) 5010cdc81d41c8d30b0000405. Summary: When calling User.find with an id or array of ids, each parameter must match a document in the database or this error will be raised. The search was for the id(s): 5010cdc81d41c8d30b0000405 ... (1 total) and the following ids were not found: 5010cdc81d41c8d30b0000405. Resolution: Search for an id that is in the database or set the Mongoid.raise_not_found_error configuration option to false, which will cause a nil to be returned instead of raising this error when searching for a single id, or only the matched documents when searching for multiples.


4

1 回答 1

0

为此使用
user = User.find_or_create_by(username: login)
,而不是
user = User.find_by(username: login)

于 2012-07-27T06:54:17.627 回答