我有一份地方影子(角色清单)档案,我向美国宇宙航空研究开发机构阅读了这一档案:
var myPlaylist = (!XMLHttpRequest) ?new ActiveXObject( Microsoft.XMLHTTP )
:new XMLHttpRequest;
myPlaylist.open( "GET", tempsrc,true);
myPlaylist.onreadystatechange = reportStatus;
<代码>reportStatus 方法分立responseText
,并向录像机发送链接。
When I make a change and update my .pls file, which is referred as tempsrc
in the code, my program works on old version of the file and ignores changes I made on file.
If I rename the .pls file, then it notices changes and treats it like a new file which makes sense.
在不重新命名卷宗的情况下,我能做些什么?