我在iPhone上推出了一个应用程序。 我的搭档发给我一个像这样的卷曲命令
curl -F "clothing_item[photo]=@dress1.jpg" -F "clothing_item[name]= pink_dress" http://www......com/shop_items.json?auth_token=abc_xyz_123
并要求我实现一个响应将图像上传到服务器的功能。 我试试
forge.ajax({
url: "http://www........com/shop_items.json",
type: "POST",
dataType: 'json',
data: {
"auth_token": token,
"clothing_item[photo]": imageFile,
"clothing_item[name]": id + "-" + d.getTime().toString()
},
success: function(data) {
},
error: function(error) {
}
});
使用imageFile是来自相机的文件。这篇文章很成功,但没有图片上传到服务器。
还可以尝试:
forge.ajax({
url: "http://www........com/shop_items.json",
type: "POST",
dataType: 'json',
file:[imageFile];
data: {
"auth_token": token,
"clothing_item[photo]": imageFile,
"clothing_item[name]": id + "-" + d.getTime().toString()
},
success: function(data) {
},
error: function(error) {
}
});
但它不起作用。
感谢任何建议
答案 0 :(得分:1)
以下是一些帮助您调试的指南,虽然很难知道这里究竟是什么问题。