#9 楼 @kayakjiang 哦。明白你说的意思了。谢谢大神!
可惜我已经买了!很不错的入门书。推荐!!!
class ArticlesController < ApplicationController def new @article = Article.new end
def create @article = Article.new(article_params)
if @article.save redirect_to @article else render 'new' end end
def show @article = Article.find(params[:id]) end
def edit @article = Article.find(params[:id]) end
def update @article = Article.find(params[:id])
if @article.update(article_params) redirect_to @article else render 'edit' end end private def article_params params.require(:article).permit(:title, :text) end
def index @articles = Article.all end end 问题解决了,因为我把 index 写在了 private 下面了。所以@articles估计是在页面就取不到了。但是 index 这个函数却还能访问,奇怪。。。 谢谢大家!!!
#1 楼 @michael0015 你是说我的@articles查出来时空的吗?
报名听讲!