我有成功函数的ajax请求,我也有HAML模型。 我希望用很少的模型生成并传递成功的数据,因为我看到每个人都使用erb,但我遇到了syntaxis问题
这里是模型:
%p
%strong Commenter:
= comment.commenter
%p
%strong Comment:
= comment.body
%p
= link_to 'Destroy Comment', [comment.article, comment], |
method: :delete, |
data: { confirm: 'Are you sure?' } |
它是coffeescript.js的样本
success: (data, textStatus, jQxhr) ->
console.log(data)
$("#comments").append('')