我正在构建HTML5应用程序,该应用程序以XML格式从Web Server获取数据。
XML包含像“http://images.somedomain.com/large/9998463102.png”这样的图像标签,我需要在Appcache文件中缓存那些我不知道其名称的图像,以便在离线模式下可用。
请注意,图像经常更新,我无法猜出图像的名称,以便在Appcache文件中手动设置。
我的Appcache文件如下所示:
CACHE MANIFEST
#Version 2.3.6
CACHE:
http://images.somedomain.com/large/9998463102.jpg
http://images.somedomain.com/large/9998453193.jpg
# always load online resources like ads
NETWORK:
*
问题如何以编程方式在Appcache
文件中设置图像。
注意:我正在使用JS和HTML5 我不需要使用任何服务器脚本语言。