weixin_33726943 2017-01-03 14:18 采纳率: 0%
浏览 13

无法捕获ajax响应

I do have a controller action

def create
    @place = Place.new(place_params) 

    respond_to do |format|
  if @place.save       
    format.json { render json: @place, status: :created }      
  end
end

and a form

        div.col-sm-6
        h1 Place
        =form_for Place.new, remote: true do |f|                                                                
          div
            = f.label :address, class: 'label_hidden'
            = f.text_field :address, class: "form-control"
          div
            = f.label :title, class: 'label_hidden'
            = f.text_field :title, class: "form-control"
          div 
            = f.label :longitude, class: 'label_hidden' 
            = f.text_field :longitude, class: "form-control"
          div
            = f.label :latitude, class: 'label_hidden'
            = f.text_field :latitude, class: "form-control"
          div
            = f.submit 'Create', class: "btn btn-default"

so I need to get an ajax response. I ve tryed somth like this

$(document).ready ->
  $("#new_place").on("ajax:success", (e, data, status, xhr) ->
      console.log xhr.responseText
    ).on "ajax:error", (e, xhr, status, error) ->
      console.log "ERROR"

But that does not work. Need some help on this

  • 写回答

1条回答 默认 最新

  • weixin_33730836 2017-01-03 14:56
    关注

    You need to set the form up so that Rails ujs sends the request for json and not js.

    = form_for Place.new, data: { remote: true, type: 'json' } do |f|
    
    评论

报告相同问题?

悬赏问题

  • ¥15 这个电路是如何实现路灯控制器的,原理是什么,怎么求解灯亮起后熄灭的时间如图?
  • ¥15 matlab数字图像处理频率域滤波
  • ¥15 在abaqus做了二维正交切削模型,给刀具添加了超声振动条件后输出切削力为什么比普通切削增大这么多
  • ¥15 ELGamal和paillier计算效率谁快?
  • ¥15 file converter 转换格式失败 报错 Error marking filters as finished,如何解决?
  • ¥15 ubuntu系统下挂载磁盘上执行./提示权限不够
  • ¥15 Arcgis相交分析无法绘制一个或多个图形
  • ¥15 关于#r语言#的问题:差异分析前数据准备,报错Error in data[, sampleName1] : subscript out of bounds请问怎么解决呀以下是全部代码:
  • ¥15 seatunnel-web使用SQL组件时候后台报错,无法找到表格
  • ¥15 fpga自动售货机数码管(相关搜索:数字时钟)