在我的带有 ui.router 的 AngularJS 应用程序中,如果结尾有斜杠,URL 中的参数将被解释为路径。
什么有效:
http://example.com/product/123
什么不起作用:
http://example.com/product/123/
在控制台中,我看到 AngularJS 正在寻找所有文件,
http://example.com/product/123/
而不是http://example.com/product
谷歌告诉我有一个选项$urlMatcherFactory.strictMode(false)
我不知道如何让它工作。我仍然不确定这是否会有所帮助。
有类似经历的人吗?