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) {
}
});
しかし、それは機能しません。
アドバイスをいただければ幸いです