acts-as-follower

    2熱度

    1回答

    我正在開發一個社交網絡,我們必須能夠關注其他用戶帳戶。現在我難住最好的辦法做到這一點我有一個方法遵循用戶對象current_user.follow(用戶)類似的東西。我該如何將信息存儲在用戶索引頁面上,以便當前用戶可以關注該頁面上的任何用戶。 是否最好將用戶標識存儲在隱藏字段中,並在單擊後續按鈕時查詢該用戶。

    1熱度

    1回答

    我正在開發一個Rails應用,用戶可以在其中跟蹤tag。我正在使用acts_as_taggable和acts_as_follower,但我不知道如何繼續。 用戶模式: class User < ApplicationRecord acts_as_follower end 帖子模式 class Post < ApplicationRecord belongs_to :user act

    1熱度

    1回答

    我在色器件創建一個User模型: class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable and :omniauthable devise :database_authen

    0熱度

    2回答

    Im試圖從Users獲取所有Posts。我正在使用act_as_follower寶石。用戶遵循profile模型,並且Posts屬於User。 我的用戶模型: acts_as_follower 我的剖面模型的用戶如下: belongs_to :user acts_as_followable Post模型: belongs_to :user 我的帖子Controller.rb:

    0熱度

    2回答

    我正在關注Django示例教程,無法關注用戶。我點擊按鈕,但沒有任何反應。我一遍又一遍地瀏覽了該部分,複製並粘貼了代碼。它仍然不起作用。 這是我的觀點 @ajax_required @require_POST @login_required def user_follow(request): user_id = require.POST.get('id') action

    0熱度

    1回答

    在我的項目我使用acts_as_follower寶石,以實現用戶 所以在我的User類中的後續/未追蹤功能,我有 class User < ApplicationRecord ... acts_as_follower acts_as_followable ... end 但在db表Follow,該follower_type是User(這是正確的),而f