[Rails] [오류] undefined method`tokey' for ×××
1488 단어 Rails
rails에서 상술한 오류가 발생했습니다.
해결책
posts_controller.rb def index
@posts = Post.all
end
index.html.erb <%= form_for @posts ,html: { class: "form-group" } do |form| %>
@posts = Post.all
에서 정의한 실례 변수form_for
를 사용했기 때문에 사용하지 않습니다form_for
.
까닭 ■ ActiveRecord::Relationを返すメソッド
all
scope (実装でnilを返すとallと同様になる)
select (使い方次第)
group
order
reorder
unscope
from
:
(省略)
:
■ 配列やオブジェクトを返すメソッド
select (使い方次第)
find
find_by
take
first
last
second
third
fourth
fifth
:
(省略)
:
방법은 ActiveRecord::Relationを返す
과配列やオブジェクトを返すメソッド
두 가지로 나뉘는데 form_for
대상 모델all
ActiveRecord::Relationを返すメソッド
을 사용하여 오류를 초래했다.
Reference
이 문제에 관하여([Rails] [오류] undefined method`tokey' for ×××), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ryouya3948/items/04fa30611dd976c1bbe1
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
def index
@posts = Post.all
end
<%= form_for @posts ,html: { class: "form-group" } do |form| %>
■ ActiveRecord::Relationを返すメソッド
all
scope (実装でnilを返すとallと同様になる)
select (使い方次第)
group
order
reorder
unscope
from
:
(省略)
:
■ 配列やオブジェクトを返すメソッド
select (使い方次第)
find
find_by
take
first
last
second
third
fourth
fifth
:
(省略)
:
방법은 ActiveRecord::Relationを返す
과配列やオブジェクトを返すメソッド
두 가지로 나뉘는데 form_for
대상 모델all
ActiveRecord::Relationを返すメソッド
을 사용하여 오류를 초래했다.
Reference
이 문제에 관하여([Rails] [오류] undefined method`tokey' for ×××), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ryouya3948/items/04fa30611dd976c1bbe1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)