我创建了一个 SIMILE 时间轴,它使用 XML 文件作为数据源,该数据源由调用 aspx 命令时的方法创建。问题是当 XML 文件更新时,时间轴不会更新,而是显示第一次加载的数据。仅当我关闭浏览器并使用时间轴再次打开 Web 应用程序时,才会刷新数据。即使我转到我的 Web 应用程序的另一个页面,然后返回到带有时间轴的页面,显示的数据仍然是相同的。我已经确认在调用创建时间轴的脚本之前创建/更新了 XML 文件,并且我还尝试了一些技巧,例如强制 PageLoad()、执行 Response.Redirect() 并且不使用缓存。我的函数 onLoad() 类似于 simile-widget 提供的原始函数。代码:
<head>
...
<meta http-equiv="pragma" content="no-cache" />
<META HTTP-EQUIV="Expires" CONTENT="-1">
...
var tl;
function onLoad() {
$(document).ready(function() {
var eventSource1 = new Timeline.DefaultEventSource(0);
var theme1 = Timeline.ClassicTheme.create();
theme1.timeline_start = new Date(Date.UTC(2010, 0, 1));
theme1.timeline_stop = new Date(Date.UTC(2014, 0, 1));
var d = theme1.timeline_start;
var bandInfos = [
Timeline.createBandInfo({ ... }),
Timeline.createBandInfo({ ... })
];
bandInfos[1].syncWith = 0;
bandInfos[1].highlight = true;
// create the Timeline
tl = Timeline.create(document.getElementById("tl"), bandInfos);
var url = '.';
// references in the data
tl.loadXML("batch_data.xml", function(xml, url)
{eventSource1.loadXML(xml, url); });
tl.finishedEventLoading();
});
}
...
</head>
<body onload="onLoad();" onresize="onResize();">
<form id="form1" runat="server">
<div id="tl" runat="server">
...
</div>
</form>
</body>
谢谢!