作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很困惑,这是文档
https://github.com/FriendsOfSymfony/FOSJsRoutingBundle/blob/master/Resources/doc/index.md
documentation -> Routing.generate('my_route_to_expose', { id: 10 }); // will result in /foo/10/bar
这是 Controller 上的路由(具有前缀“ super 用户”)
/**
* @Route("/deleteuser/{userid}",name="suDeleteUserRoute",options={"expose"=true})
* @Template()
*/
public function deleteUserAction($userid)
{
所以我显然想生成一条看起来像这样的路线
server.com/superuser/deleteuser/76
但它会生成一 strip 有问号的路线
server.com/superuser/deleteuser?id=76
这就是我在 Javascript 上生成路线的方式
Routing.generate('suDeleteUserRoute', { id: 76 });
最佳答案
您可以在routing.yml
中创建如下所示的路由:
super_user:
path: /superuser/deleteuser/{userid}
defaults: { _controller: BundleName:ControllerName:FunctionName }
requirements:
userid: \d+
Controller
操作
关于javascript - 如何在 FOSJSRoutingBundle 上生成不带问号的路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25158133/
我是一名优秀的程序员,十分优秀!