Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post json within request body #545

Open
zhangciwu opened this issue Mar 4, 2018 · 4 comments
Open

Post json within request body #545

zhangciwu opened this issue Mar 4, 2018 · 4 comments

Comments

@zhangciwu
Copy link

zhangciwu commented Mar 4, 2018

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
Copy link
Author

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'
});

@kevindb
Copy link
Contributor

kevindb commented Jun 29, 2018

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.

@errajswami
Copy link

Is it still open?

@zhangciwu
Copy link
Author

Raised PR #557

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants