- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个功能,用户可以在其中使用 Ajax 创建对文章的评论。但是,我不明白为什么只有存在一个评论才能通过 ajax 成功呈现评论。评论提交到数据库,没有任何回滚。
如果我重新加载页面并创建第二条评论,那么新评论才会被附加。
Started POST "/articles/veniam-ipsum-eos-quas-aut-rerum-consequatur-at-velit-perferendis-odio/comments" for 103.252.202.198 at 2017-11-03 16:50:14 +0000
Processing by CommentsController#create as JS
Parameters: {"utf8"=>"✓", "comment"=>{"content"=>"comment only appended if a comment exists"}, "commit"=>"Add Comment", "article_id"=>"veniam-ipsum-eos-quas-aut-rerum-consequatur-at-velit-perferendis-odio"}
User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
Article Load (0.6ms) SELECT "articles".* FROM "articles" WHERE "articles"."slug" = $1 LIMIT $2 [["slug", "veniam-ipsum-eos-quas-aut-rerum-consequatur-at-velit-perferendis-odio"], ["LIMIT", 1]]
(0.2ms) BEGIN
SQL (0.6ms) INSERT INTO "comments" ("content", "article_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["content", "comment only appended if a comment exists"], ["article_id", 189], ["user_id", 1], ["created_at", "2017-11-03 16:50:14.291049"], ["updated_at", "2017-11-03 16:50:14.291049"]]
(2.5ms) COMMIT
评论 Controller
class CommentsController < ApplicationController
before_action :authenticate_user!
before_action :set_article
def create
@comment = @article.comments.build(comment_params)
@comment.user = current_user
if @comment.save
respond_to do |format|
format.html do
flash[:success] = "Your comment was created successfully"
redirect_to @comment.article
end
format.js
end
unless @comment.article.user == current_user
Notification.create!(recipient: @article.user, actor: current_user, action: "posted", notifiable: @comment)
end
else
respond_to do |format|
format.html { redirect_to @comment.article, flash[:error] = "Unable to submit comment."}
end
end
end
private
def set_article
@article = Article.friendly.find(params[:article_id])
end
def comment_params
params.require(:comment).permit(:content)
end
end
文章 Controller
def show
@comments = @article.comments.order("created_at DESC")
@new_comment = @article.comments.new
end
文章/show.html.erb
<%= render 'comments/comment_form' %>
<% if @comments.exists? %>
<div id= "comment" >
<%= render @comments %>
</div>
<% else %>
<div class ="no-comments">
<p> There are no comments yet.</p>
</div>
<% end %>
评论/_comment_form.html.erb
<%= form_for [@article, @new_comment], remote: true do |f| %>
<div class="form-group">
<div class = "row">
<div class= "col-md-9 col-sm-9 col-xs-12">
<%= f.text_area :content, rows: 2, placeholder: "Write your comment...", class: 'form-control' %>
</div>
<div class= "col-md-3 col-sm-3 col-xs-12">
<%= f.submit 'Add Comment', class: 'btn btn-md btn-default' %>
</div>
</div>
</div>
<% end %>
评论/_comment.html.erb
<%= comment.content %>
comments/create.js.erb
$('#comment').append("<%= escape_javascript (render partial: @comment) %>");
路线:
resources :articles do
resources :comments
end
解决方案:
用户 PlanB 在下面给出了一个可行的解决方案,但我稍微调整了答案以便 <p> There are no comments yet.</p>
提交评论表后将被删除。
文章/show.html.erb
<div id="comment-form">
<%= render 'comments/comment_form' %>
</div>
<div id = "comment-list" >
<% if @comments.exists? %>
<%= render @comments %>
<% else %>
<div id = "no-comments">
<p> There are no comments yet.</p>
</div>
<% end %>
</div>
comments/create.js.erb
$('#comment-list').append("<%= escape_javascript (render partial: @comment) %>");
$('#no-comments p').html('');
最佳答案
尝试这样的事情:
<%= render 'comments/comment_form' %>
<% if @comments.exists? %>
<div class= "comment" >
<%= render @comments %>
</div>
<% else %>
<div class= "comment">
<p> There are no comments yet.</p>
</div>
<% end %>
和:
$('.comment').append("<%= escape_javascript (render partial: @comment) %>");
因为你的if
语句不创建 div#comment
如果现在有评论,那么
$('#comment').append("<%= escape_javascript (render partial: @comment) %>");
不能将任何内容附加到 #comment
因为它不存在于 HTML 中。
关于javascript - rails 5 + Ajax : Comment appended only if a comment exists,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47101211/
有没有办法在 Brainfuck 中做包含句点('.')的评论? 我知道我基本上可以使用不是命令之一的每个字符,它会被忽略,但我想在文件顶部的注释中放置一个版本号,其中包含一个句点。 最佳答案 您可以
我不明白以下代码的 % comment.length 位: comment.charAt(i % comment.length()) 括号之间的部分是否会转换为整数,其值表示与评论长度相关的i? 例如
我终于找到了我的 PHP 脚本无法运行的原因。这是因为 MySQL "--comment"而不是 "-- comment"。我最近开始使用 PHP,直到那时,我一直使用“--comment”。现在,我
是否可以在项目中搜索用户在 checkin 文件后添加的评论? (手动可以通过选择一个文件,右键单击 --> 显示历史记录 --> 选择版本 --> 详细信息,在评论 Pane 中查看)。 是否可以自
我不完全确定这是否不是插件,但是在 .js 文件中开始一行注释之后,例如,当我按下回车键时,下一行也以“//”开头。这有点烦人。有没有简单的方法可以删除它? 最佳答案 在“首选项 -> 包设置 ->
我在网上搜索,没有找到解释这个评论 block 用法的结果。因此,我希望有人能向我解释这种评论风格背后的原因。 /// Text goes here. 最佳答案 它们是 XML 文档注释。 http
这有充分的理由吗?这是一个蹩脚的问题,但我只是想知道是否有原因。 最佳答案 因为 specification允许/**/但不允许//:) 不过,严重的是,CSS 像对待所有其他空格一样对待换行符,并且
我有一个评论模型,我看过使用 @comment, :comment, comment 来引用 MVC 中的对象的示例。我怎么知道哪个是哪个?有区别吗? 最佳答案 @comment指 Rails Con
我有一些使用 Drupal 实现的网站。然而,尽管 Drupal 很酷,但我从未对它的编码感到满意,主要是因为它是在 PHP 中的,而且我想使用 python。我曾与 Django 调情,但我最近才发
似乎我仍然没有完全转变为 mac 用户(来自 Windows),再次遇到键盘快捷键问题: 在 phpstorm 中,下拉菜单中显示了以下“带有行注释的注释”的快捷方式: 现在,问题是,我的键盘上没有“
我正在按照 here 所述使用 fb:comments| . 评论工作正常,但我找不到在添加新评论时收到通知的方法。有没有办法轻松找到新评论(无需每次都访问我的 3000 篇文章)? 我知道 FB 对
我正在尝试创建一个功能,用户可以在其中使用 Ajax 创建对文章的评论。但是,我不明白为什么只有存在一个评论才能通过 ajax 成功呈现评论。评论提交到数据库,没有任何回滚。 如果我重新加载页面并创建
我正在使用 mongodb native 驱动器来获取查询结果的游标。 我正在使用一个“评论”字段,它基本上是一个字符串,下面是我正在使用的代码片段 let leve1_n = 'labreports
如果我将此URL放入浏览器中:。Https://www.facebook.com/plugins/comments.php?api_key=MYAPID。它会显示注释框,但不会显示任何评论。谁能告诉我
我想显示每个项目的评论数量和最后评论的日期。 SELECT item.*, count(comments.itemid) AS commentcount, comments.created A
这个问题在这里已经有了答案: What is the second parameter of NSLocalizedString()? (5 个答案) 关闭 6 年前。 我搜索并阅读了 NSLoca
我希望我的 Wordpress 博客中的字幕能够计算我的帖子在 Facebook 上的评论数。插入Facebook的代码后 ID); ?>"> comments 我意识到当我只有 1
我在我的项目中收到以下 TsLint 消息: TsLint: comment must start with lowercase letter 这背后有什么依据吗?我同意我在 TsLint 中遇到的大
我正在使用以下代码完成教程: New Comment @comment = Comment.new, :locals => { :button_name => "Create" } %>
环境 适用于macOS的Visual Studio代码1.18.0。 主题hedinne.popping-and-locking-vscode,由 hedinne 组成。 问题 当我覆盖/*> edi
我是一名优秀的程序员,十分优秀!