douxian6086 2018-04-16 09:48
浏览 53
已采纳

Zend Framework 3在布局视图中将控制器中的参数传递给View Helper

How can I pass parameters to a view helper in layout view from a controller, or pass parameters to view helper somehow else in Zend Framework 3?

  • 写回答

1条回答 默认 最新

  • duanmei2459 2018-04-16 13:28
    关注

    To pass parameters from a controller to a view helper in the layout view, you want to pass the parameter from the controller to the layout, and then call the view helper in the layout using the parameter it got from the controller.

    // in the controller
    
    $this->layout()->myParameter = 'foo';
    

    then

    // in the layout view
    
    // set a parameter value for cases where a controller doesn't pass a parameter
    $myParameterValue = ( isset($this->myParameter)) ? $this->myParameter : null ); 
    
    echo $this->myViewHelper($myParameterValue);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部