1

我遇到了这种非常奇怪的行为,我的应用程序中的基本路由有时可以正常工作,有时不能正常工作,并且在我的视图文件中,<%= ...... %> 内部的 ruby​​ 代码没有呈现在全部。这部分(里面的那个 <%= %> )只是显示空白。我知道控件在这里,因为如果我在这些分隔符之外写任何字符串,那么它会显示在页面上。

在路由方面,我遇到的问题是我的创建控制器要索引。我正在关注来自http://www.noupe.com/ajax/create-a-simple-twitter-app.html的示例教程

我正在使用 ruby​​ 版本 1.9.3p194 和 rails 版本 3.2.6

我的源文件如下。

路由.rb

resources :posts  
match '/create', :to => 'posts#create'

match ':controller(/:action(/:id))(.:format)'

index.html.erb

In posts index file

<% form_tag(:controller => "posts", :action => "create") do %>  
  <%= label_tag(:message, "What are you doing?") %><br />  
  <%= text_area_tag(:message, nil, :size => "44x6") %><br />   
  <%= submit_tag("Update") %>  
<% end %>

创建.html.erb

<%= debug(params) %>
<%= render :partial => "message_form" %>
<%= render :partial => @posts %>

显示.html.erb

buddy, here I am in show now .

post_controller.rb

class PostsController < ApplicationController
  def index
    puts "I am in Posts#index"
    @posts = Post.all(:order=>"created_at DESC")
    respond_to do |format|
      format.html
    end
  end

  def show
    puts "I am in Posts#show"
  end

  def edit
    puts "I am in Posts#edit"
  end

  def new
    puts "I am in Posts#new"
  end

  def create
    puts "I am in Posts#create"

    @post = Post.create(:message=>params[:message])
    respond_to do |format|
      if @post.save
        format.html {redirect_to posts_path}
      else
        flash[:notice] = "Message failed to save"
        format.html {redirect_to posts_path}
      end
    end
  end
end

当我输入http://localhost:3000/posts/create时,它显示“伙计,我现在在表演中”。这是 show.html.erb 的渲染,不执行任何 ruby​​ 代码

当我键入http://localhost:3000/posts时,它显示“在帖子索引文件中”,它正在为索引文件呈现,但没有执行任何部分 ruby​​ 代码

任何帮助都非常感谢!

4

1 回答 1

3

=在帖子索引中缺少此行的标志,这就是未呈现表单的原因。

这条线

<% form_tag(:controller => "posts", :action => "create") do %>

应该

<%= form_tag(:controller => "posts", :action => "create") do %>

那至少应该解决第二个问题。

于 2012-07-15T07:08:14.850 回答