未找到 find_or_create_by_facebook_id 方法

发布于 2024-08-25 08:59:09 字数 532 浏览 7 评论 0原文

我正在尝试找出这个函数从哪里来。有人有任何线索吗?它的用法如下:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§普罗旺斯的薰衣草 2024-09-01 08:59:14

ActiveRecord 根据数据库中的列创建动态查找器。因此,例如,如果您有一个具有用户名属性的用户,那么 activerecord 会创建许多动态查找器:

find_by_username
find_or_initialize_by_username #=> calls new if not found
find_or_create_by_username #=> calls create if not found

您可以将一些属性串在一起,例如

find_by_username_and_email

要回到您的问题 - 我怀疑您没有运行一些必需的迁移来添加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:

find_by_username
find_or_initialize_by_username #=> calls new if not found
find_or_create_by_username #=> calls create if not found

You can string a few attributes together like

find_by_username_and_email

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文