我是 Ruby on Rails 的新人,我不明白如何通知或发送以查看某些信息表单控制器。这是代码=>
def index
@post = Post.all()
#here i want notify new_post_view about Post's empty
if @post.length == 0
redirect_to new_post_path
end
end
我怎么能这样做?
我是 Ruby on Rails 的新人,我不明白如何通知或发送以查看某些信息表单控制器。这是代码=>
def index
@post = Post.all()
#here i want notify new_post_view about Post's empty
if @post.length == 0
redirect_to new_post_path
end
end
我怎么能这样做?