Tag: 锚链

Rails 3.1.3使用anchor属性和posts_to标签从posts / index到posts / show / id不起作用

我在我的post/索引视图上使用了link_to标签,并希望将其链接到我的post/ show / id视图,并使用锚点向下滚动到评论表单。 出于某种原因,我无法让锚点工作。 这是我的代码: 在post/索引中 ‘comment_form’ %> 这无法将#符号附加到链接的末尾,因此它只是localhost:3000 / posts / id。 我还为link_to尝试过很多变种,包括: ‘comment_form’ %> 和 ‘posts’, :action => ‘show’, :id => @post, :anchor => ‘comment_form’ %> 但我没有运气。 这是我的post#show action: def show @post = Post.find(params[:id]) respond_to do |format| format.html # show.html.erb format.json { render json: @post } end end 这里是我希望锚滚动到的post/显示视图: Add a comment: […]