PhoneGap中文网

标题: phogap+jqmobi如何实现图片下载并保存到手机? [打印本页]

作者: leadersu    时间: 2014-12-1 11:03
标题: phogap+jqmobi如何实现图片下载并保存到手机?
项目需要把网上的图片下载下来并保存到手机上,从网上找了串代码,但是没反应,求高人指点
function savePicToPhone(img_url,qcode)
{
  if(img_url != "")
  {
    var url = img_url; // image url
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fs) {
        var imagePath =fileSystem.root.fullPath +"/newsimg/"+ qcode+".jpg"; // full file path
        var fileTransfer = new FileTransfer();
        fileTransfer.download(url, imagePath, function (entry) {
                    console.log(entry.fullPath); // entry is fileEntry object
        }, function (error) {
                 console.log("error");

        });
     });
  }

http://blog.csdn.net/loska/article/details/9417325

作者: admin    时间: 2014-12-2 13:09
phonegap_file09.zip (962 Bytes, 下载次数: 59)

看看这个demo ,这个是简单的下载保存指定路径,

如果还不知道怎么找的路径可以看看文件操作的官方文档


作者: 千丿年    时间: 2014-12-3 11:33
空的,
作者: leadersu    时间: 2014-12-3 15:33
admin 发表于 2014-12-2 13:09
看看这个demo ,这个是简单的下载保存指定路径,

如果还不知道怎么找的路径可以看看文件操作的官方文档

可用~谢谢老大~




欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2