我使用带有 2 个链接和警报的默认演示,现在我包含了哈希和标题插件。我的代码是:
<script type="text/javascript">
Davis.extend(Davis.hashRouting({ prefix: "!"}));
var app = Davis(function () {
this.use(Davis.title);
this.configure(function () {
this.generateRequestOnPageLoad = true
});
this.get('/welcome/:name', function (req) {
alert("Hello " + req.params['name']);
this.setTitle(req.params['name']);
});
});
app.start();
</script>
<a href="#!/welcome/oliver">greet oliver</a> //link 1
<a href="#!/welcome/bob">greet bob</a> //link 1
现在的问题是当我点击链接时,它会将我重定向到:http://localhost/%23!/welcome/bob#!/welcome/bob 有什么问题?:(