0

我正在尝试“转换”以下工作卷曲:

curl -X POST -H "Content-Type: application/json" -d
    "{"""username""":"""myuser""", """password""":"""nastypassword"""}"
    http://website.com/api/v1.0/login

到 jquery 调用。

最重要的是,在服务器端我需要获取json数据,因为我使用的是 flask 和request.json来获取数据。

我在许多变体中尝试了以下内容:

$.ajax('http://website.com/api/v1.0/login', {
    type: 'POST',
    dataType: 'json',
    contentType: 'application/json', // I don't think this needs to be here because of dataType
    data: {
        username: 'myuser',
        password: 'nastypassword'
    }
})
    .done(function(data) {
        console.log(data);
    })
    .fail(function(xhr, status, error) {
        alert(status + ' - ' + error);
    });

如何让 jquery 发送 json?

我可能应该补充一点,我正在创建一个 cordova 应用程序。并access origin设置为*GET工作正常。

4

1 回答 1

-1

你可能想要

$.ajax('http://website.com/api/v1.0/login', {
  type: 'POST',
  dataType: 'json',
  contentType: 'application/json', // I don't think this needs to be here because of dataType
  data: {
    username: 'myuser',
    password: 'nastypassword'
  },
  success: function(data){
    console.log(data);
  },
  error: function(xhr, status, error){
    alert(status + ' - ' + error);
  }
});
于 2013-08-27T12:23:02.280 回答