0
目前正在使用Cordova App。我使用<img class="profile-thumbnail" src="cdvfile://localhost/persistent/Photo/mypicture.jpg">
在視圖中顯示一些內容。關於cdvfile的說明://協議
當我生成一個新的mypicture.jpg
使用文件API來覆蓋現有的,然後圖片從視圖中消失,永遠不會回來,然後我殺死並重新啓動應用程序。
我嘗試:
$('.profile-thumbnail').attr('src','cdvfile://localhost/persistent/Photo/mypicture.jpg');
我的存儲成功調用後
,但它仍然不只是更新後顯示正確的畫面。
當我重新啓動應用程序時,新文件顯示正常。
那麼,cdvfile://協議如何處理更新?
更新文件後是否有緩存刷新?
處理這種請求的任何首選技術?