我使用带有几条路线的backbone.js设置了Express服务器,我正在尝试使用req.params通过url捕获信息。
我已使用适当的路由设置我的服务器
app.get( '/route/:first/:second', router.routeHandler );
使用我的快速服务器,当我输入这样的网址时:
http://localhost:3000/route/firstVar/secondVar
我将原始JSON返回给我,但是当我尝试这样的网址时:
http://localhost:3000/#route/firstVar/secondVar
它实际上会将html和CSS呈现给页面。那里发生了什么?我可以改变这种行为吗?那个设置在哪里?