0

我需要当我从列表(indexSuccess)中单击“新建”链接时,新操作(executeNew)可以接收参数“'commercer_id='.$commerce_id”。谢谢。

4

1 回答 1

0

试试下面,

应用程序/前端/配置/路由.yml

index:
  url:   /New/:commercer_id
  param: { module: index, action: new }

在锚 src 中使用波纹管功能

url_for(array(
  'module'   => 'index',
  'action'   => 'new',
  'commercer_id'=>$commercer_id,
))

阅读有关路由器的更多信息

希望能帮助到你!

于 2012-07-03T16:36:52.563 回答