在我的 phonegap/cordova 应用程序中,我有一个头像列表。
在应用程序上获取这些图像的最佳方式是什么?
使用文件传输插件下载图像更好吗?或者最好通过 ajax 调用将它们下载为二进制文件?还有什么?
图像必须每天下载两次,因为用户每天更新两次。
Best Answer-推荐答案 strong>
你可以这样试试
<body>
<h1> Get Picture </h1>
<button onclick="getPicture()">Get here</button>
<div data-role="">
<img id="productPic">
</div>
</body>
使用 JSON 从服务器获取图像。
function getPicture()
{
$
.getJSON("http://yoururlhere/getImage.action",
{}, function(data) {
processPictureData(data);
});
}
function processPictureData(data)
{
$.each(data.PICTURE, function(i, product) {
$('#productPic').attr('src', product.LOCAT);
});
}
看例子http://javalearnersproblems.blogspot.in/2012/05/code-for-displaying-image-in-phonegap.html
关于android - Phonegap/ Cordova : get images from server,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26100899/
|