实际上,我有一个servlet,它打开一个使用simile timeline小部件的页面timeline.html。当网页直接从user.dir/timeline.html打开时,时间线显示完美。但是,当通过localhost:8080上的servlet打开网页时,它不会加载xml文件。
你知道为什么吗?
if (action.equals("create")) {
request.getRequestDispatcher("/timeline.html").forward(request, response); } 时间线代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Timeline</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script src="http://api.simile-widgets.org/timeline/2.3.1/timeline-api.js?bundle=true" type="text/javascript"></script>
<script>
function onLoad() {
var eventSource = new Timeline.DefaultEventSource();
var bandInfos = [
Timeline.createBandInfo({
eventSource: eventSource,
date: "Jun 28 2013 00:00:00 GMT",
width: "70%",
intervalUnit: Timeline.DateTime.MONTH,
intervalPixels: 100
}),
Timeline.createBandInfo({
overview: true,
eventSource: eventSource,
date: "Jun 28 2013 00:00:00 GMT",
width: "30%",
intervalUnit: Timeline.DateTime.YEAR,
intervalPixels: 200
})
];
bandInfos[1].syncWith = 0;
bandInfos[1].highlight = true;
tl = Timeline.create(document.getElementById("my-timeline"), bandInfos);
Timeline.loadXML("/timeline.xml", function(xml, url) { eventSource.loadXML(xml, url); });}
</script>
</head>
<body onload="onLoad();" onresize="onResize();">
<div id="my-timeline" style="height: 300px; border: 1px solid #aaa"></div>
<noscript>
This page uses Javascript to show you a Timeline. Please enable Javascript in your browser to see the full page. Thank you.
</noscript>发布于 2013-06-28 07:44:05
/timeline.xml指的是您的root应用程序上下文根位置。您是否将xml文件放在根位置。例如,如果您在webapps/myapp中部署了名为myapp的then应用程序,则'/'指的是myapp目录。所以/timeline.xml指的是myapp/timeline.xml
https://stackoverflow.com/questions/17333958
复制相似问题