我想将一些html代码从控制器传递给视图(原样),但是fuelphp会自动转换为html实体,因此代码无法正确显示.... 这是我的代码:
$data['test_html'] = "<b>Test</b>";
return Response::forge(View::forge('link/index', $data));
在浏览器(源代码)中,显示如下:
<b>Test</b>
知道如何解决这个问题吗?
由于
答案 0 :(得分:0)
通过将false作为第三个参数传递来禁用自动htmlentity转换。
return Response::forge(View::forge('link/index', $data, false));
如果你想传递它,你需要使用set($ name,$ value,false)