未找到 find_or_create_by_facebook_id 方法
我正在尝试找出这个函数从哪里来。有人有任何线索吗?它的用法如下:
http://github.com/fluidtickets/facebooker-authlogic-bridge
这里有一个工作示例:
http://facebooker-authlogic-bridge.heroku.com
下载代码,它抛出: undefined method 'find_or_create_by_facebook_id' for #
我不知道这个函数来自哪里。
谢谢大家!
I'm trying to find out where this function comes from. Any one have any clue? It's used by this:
http://github.com/fluidtickets/facebooker-authlogic-bridge
with a working example here:
http://facebooker-authlogic-bridge.heroku.com
Downloading the code, it throws: undefined method 'find_or_create_by_facebook_id' for #<Class:0xb04dd1c>
I have no clue where this function comes from.
Thanks all!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActiveRecord 根据数据库中的列创建动态查找器。因此,例如,如果您有一个具有用户名属性的用户,那么 activerecord 会创建许多动态查找器:
您可以将一些属性串在一起,例如
要回到您的问题 - 我怀疑您没有运行一些必需的迁移来添加facebook_id 添加到数据库中的用户表中,因此 ActiveRecord 不会将 facebook_id 的动态查找器添加到类中。
ActiveRecord creates dynamic finders based on columns in your database. So for example if you have a user with a username attribute then activerecord creates a number of dynamic finders:
You can string a few attributes together like
To get back to your problem - I suspect that you haven't run some required migration that adds the facebook_id to your users table in the db and therefore ActiveRecord isn't adding the dynamic finder for facebook_id to the class.