form icon indicating copy to clipboard operation
form copied to clipboard

Post json within request body

Open zhangciwu opened this issue 7 years ago • 4 comments

This is a feature request, and I think it's raised in #531 but misunderstanded

Description:

Now only form data format is supported in this plugin, I'd like to post json data in post body (like this: https://stackoverflow.com/questions/5570747/jquery-posting-json)

In jquery it can be done with code below:

$.ajax(url, {
    data : JSON.stringify(myJSObject),
    contentType : 'application/json',
    type : 'POST',
    ...

Expected Behavior:

With option:

contentType : 'application/json',

Request body like this :

{"name":"apple","count":"1"}

Actual behavior:

Unsupported, now only encoded form data can be in post body Request body like this:

name=apple&count=1

Why

It's quite common in now days for communicating with server in protocol of json instead of form data, so this feature is needed.

zhangciwu avatar Mar 04 '18 14:03 zhangciwu

Workaound

Use https://github.com/marioizquierdo/jquery.serializeJSON to generate json and post with jquery, like:

var myData=$('form').serializeJSON();
$.ajax(url, {
    data : JSON.stringify(myData),
    contentType : 'application/json',
    type : 'POST'
});

zhangciwu avatar Mar 04 '18 15:03 zhangciwu

I see. That makes a lot of sense.

I have added the "help wanted" label to this issue. Would you please submit a pull request to add this feature? I am very open and responsive to pull requests.

kevindb avatar Jun 29 '18 01:06 kevindb

Is it still open?

errajswami avatar Sep 14 '18 19:09 errajswami

Raised PR #557

zhangciwu avatar Sep 19 '18 17:09 zhangciwu