我在使用 Volt 框架中的路线时遇到了一些问题。我设置我的路线如下:
client "/users/{{ id }}", component: 'users', controller: 'main', action: 'profile'
当我导航到页面以查看配置文件时,一切都正确加载,但 url 是:
http://localhost:3000/users?action=profile&id=1234567890
我希望网址看起来像这样:
http://localhost:3000/users/1234567890
有人知道我在做什么错吗?