How do I append data to a jquery-ujs post request in Rails?

后端 未结 3 1132
难免孤独
难免孤独 2021-02-02 02:37

I have an Ajax form with a data-remote=\"true\" attribute which I\'m submitting to a controller in rails.

What I\'d like to do is to use the jquery-ujs even

3条回答
  •  旧巷少年郎
    2021-02-02 03:24

    As of the jQuery 1.5, there is a local beforeSend callback that can be bound to your request. Documentation link and another documentation link

    EDIT: The request data is available in the jqXHR object, the first parameter beforeSend callback.

    beforeSend(jqXHR, settings)
    

    Try inspecting the jqXHR object in firebug to see exactly where it stores the POST data and just append your values,

提交回复
热议问题