gpt4 book ai didi

ruby-on-rails - 未定义的局部变量或方法 "articles_path"

转载 作者:数据小太阳 更新时间:2023-10-29 07:10:41 26 4
gpt4 key购买 nike

我正在尝试完成本教程:http://guides.rubyonrails.org/getting_started.html#say-hello-rails但是我遇到了一个错误:

<%= form_for :article, url: articles_path do |f| %>

我有下一个错误:

undefined local variable or method `articles_path' for #<#<Class:0x4646c28>:0x4661d30>
Extracted source (around line #1):

rake 路线:

Prefix Verb URI Pattern                      Controller#Action
welcome_index GET /welcome/index(.:format) welcome#index
articles_new GET /articles/new(.:format) articles#new
root GET / welcome#index`

ArcticlesController:

class ArticlesController < ApplicationController
def new
end

def create
end
end

请帮忙!

最佳答案

我猜你忘了在你的 config/routes.rb 文件中添加 resources :articles。正如指南中所做的那样:

Blog::Application.routes.draw do

resources :articles

root 'welcome#index'
end

关于ruby-on-rails - 未定义的局部变量或方法 "articles_path",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23860810/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com