0

我在使用 Volt 框架中的路线时遇到了一些问题。我设置我的路线如下:

client "/users/{{ id }}", component: 'users', controller: 'main', action: 'profile'

当我导航到页面以查看配置文件时,一切都正确加载,但 url 是:

http://localhost:3000/users?action=profile&id=1234567890

我希望网址看起来像这样:

http://localhost:3000/users/1234567890

有人知道我在做什么错吗?

4

1 回答 1

0

通常,组件位于视图中而不是路径中。

你在使用用户控制器吗?如果是这样,我会试试这个

client "/users/{{ id }}", controller: 'user', action: 'profile'
于 2015-07-30T13:20:12.577 回答