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 回答