1

私はチタンを使用してAndroidアプリケーションを開発しています.私のアプリケーションでは、ギャラリーからリモートサーバーの場所に画像をアップロードする必要があります.私はすでにこれを試しました.

button1.addEventListener('click',function(e)
{   
  Titanium.Media.openPhotoGallery({
  success : function(event) 
  {
     var update_pic = Titanium.Network.createHTTPClient();
     update_pic.onerror = function()
    {
     Titanium.API.info('error');
     alert(JSON.parse(this.responseText).error);
    }
    update_pic.onload = function() 
    {
     actInd.hide();
    }
   update_pic.open('POST','server-address/profile/update.json');
   update_pic.send(
        { 
          "user[avatar]":event.media,
          "authenticity_token":"sD5hjlI=",
          "user[name]":'nilesh', 
          "commit":"Update Profile" 
        });
   }
   })   

})

しかし、それは私にとってはうまくいきません。プロセスはuser[avatar]:event.media,の時点で停止します。これはリモート サーバーに画像を送信する適切な方法ですか。私もこれを試しました

update_pic.send({
    user_avatar         : event.media,
    authenticity_token  : "sD5hjlI=",
    user_name           : 'nilesh',
    commit              : "Update Profile"
})

このようなパラメーターを送信すると、http 要求が送信されず、user_avatar を削除すると: event.media要求を送信すると、user_avatar に問題があることを意味します。ありがとうございました..........

4

1 に答える 1

0

「var update_pic = ...」の下にこの行を追加してみてください

update_.setRequestHeader("ContentType", "image/jpeg");

から取得: http://developer.appcelerator.com/question/9481/how-to-upload-images-with-filename-to-the-server

于 2012-05-13T06:19:56.623 に答える