ActionScript 3 如何加载最新的XML文件来解决缓存问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 如何加载最新的XML文件来解决缓存问题相关的知识,希望对你有一定的参考价值。

Many browser have cache for load file.But some one need client to see latest data so that we must delete the cache.Then we need to solve the cache problem.

About load file,we often load xml files/swf files/images files etc.... we can use ?cache =new Date().getTime

For example:

var load:URLLoader = new URLLoader();
load.load(new URLRequest("data.xml" + "?cache=" + new Date().getTime()));

or

var load:Loader = new Loader();
load.load(new URLRequest("atf.jpg" + "?cache=" + new Date().getTime()));

以上是关于ActionScript 3 如何加载最新的XML文件来解决缓存问题的主要内容,如果未能解决你的问题,请参考以下文章

未在加载函数之外保存的数组 - ActionScript 3 和 XML

ActionScript 3 加载xml

ActionScript 3 加载xml

ActionScript 3 AS3:XML加载

ActionScript 3 加载多个XML文件

ActionScript 3 xml加载器类