dozpv84422 2017-10-15 22:52
浏览 42
已采纳

Laravel等效或替代CodeIgniter

I am trying to figure out how to do the equivalent of the following in Laravel that I would do in CodeIgniter all the time to build views:

$section = $this->load->view('pages/about', $data, TRUE);

This would allow me to echo $section in another view file and then when that view was called the normal way, it would render it. I am not sure how to do something like this in Laravel.

UPDATE

I figured it out. What I was needing was Laravel's HtmlString class to take a string and convert it to html markup to the view file.

  • 写回答

2条回答 默认 最新

  • dongzai3139 2017-10-16 02:47
    关注

    You would need to use the View Facade, so make sure to include it with an "Use" statement in your Controller, but basically is this:

    $html = View::make('pages/about', $data)->render();
    

    The render() method will just render the view in HTML, instead of returning it as a Response object like the view() helper function does.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程