0

我正在为一家公司制作一个新闻应用程序,我需要我的应用程序来加载图像,但是如果你更新新闻,url 中的图像会发生变化,但是如果我更新它,我再次加载应用程序,图像仍然显示以前的图像。

这是我的代码;

    imageremote = Ti.UI.createImageView({
         image: "http://www.mydomain.com/"+company+"/image0001.png"
    });

    win.add(imageremote);
    win.open();
4

1 回答 1

2

尝试在 url 上添加一个唯一的参数,这样 url 就不会被缓存

imageremote = Ti.UI.createImageView({
     image: "http://www.mydomain.com/"+company+"/image0001.png" + "?t=" + new Date()
});

win.add(imageremote);
win.open();
于 2013-08-22T22:43:14.683 回答