-4
我需要在模型上(我已經安裝了devise
)調用current_user
。 我用這個方法,但它不工作:ruby on rails - current_user模型
class Todo
def category_name
category.try(:name)
end
def category_name=(name)
self.category = Category.find_or_create_by(name: name, user_id: current_user)
end
end
如何解決呢?
如何嘗試調用此方法? – Ilya
從控制檯? –
任何地方。你期待什麼結果? – Ilya