我正在尝试将json对象发布到cloudant数据库中。为什么我收到“400错误请求”回复?
pos = {
'lat': position.coords.latitude,
'long' : position.coords.longitude
};
$.ajax({
type: "POST",
url: 'http://03353b2e-7d68-462a-b0ab-d5feeae889fd-bluemix.cloudant.com/locations',
data: pos,
contentType: "application/json",
dataType: 'json'
});
答案 0 :(得分:0)
使用
修复data: JSON.stringify(pos)
感谢Nico O的回答