我有一个我需要使用的API,但我不确定如何通过AJAX输入我的curl命令。任何帮助将不胜感激。
我的卷曲命令:curl -H “Authorization: Token #{auth_token}” -X GET http://localhost:3000/api/v1/baskets/
AJAX到目前为止:
$.ajax({
url: "http://localhost:3000/api/v1/baskets/",
type: 'POST',
dataType: 'json',
contentType: 'application/json',
processData: false,
success: function (data) {
alert(JSON.stringify(data));
},
error: function(){
alert("Cannot get data");
}
});
更新:问题1已修复。我能够做类似的方法来得出我需要的结果,除了最后一次API调用。除了网站之外,我在-d之后无法获得所有东西。
卷曲命令:curl -H “Authorization: Token #{auth_token}” -X GET -d ‘basket_id=#{basket_id}&price=#{price}&title=#{title}&merchant_url=#{merchant_url}&comment=#{comment}&product_url=#{product_url}&merchant_name=#{merchant_name}&color=#{color}&size=#{size}&product_image_url=#{product_image_url}’ http://localhost:3000/api/v1/baskets/add
AJAX到目前为止:
$.ajax({
url: "http://localhost:3000/api/v1/baskets/add",
type: 'GET',
processData: false,
headers: { 'Authorization' : giftibly_token_string },
data: {"basket_id": "2", "title" : "Hello There", "merchant_name" : "Target", "merchant_URL" : "http://test.com", "product_url" : "http://test.com/product" },
success: function (data) {
window.response = JSON.stringify(data);
console.log(response);
},
error: function(){
console.log("Cannot get data");
}
});
浏览器结果:{"response":"Missing attributes: Basket ID, Title, Merchant Name, Merchant URL, Product URL"}
答案 0 :(得分:1)
这应该有效
$.ajax({
url: "http://localhost:3000/api/v1/baskets/",
type: 'GET',
processData: false,
headers: { 'Authorization' : 'Token #{auth_token}' },
success: function (data) {
alert(JSON.stringify(data));
},
error: function(){
alert("Cannot get data");
}
});