Laravel Blade(显示数据为新行)
Laravel Blade ( Displaying data as new line)
所以我的表格中有一个 <textarea>
。用户可以输入新行或单行。因此,当用户查看文本时,它将显示为 he/she 输入方式。
表格
<textarea name="jo_unit" class = 'form-control' required="required" cols = '4'></textarea>
预期输出
测试 1
测试 2
测试 3
我得到了什么
我的显示代码
{{ nl2br(@$get['result'][0]->jo_unit_2) }}
Security: This code allows XSS attacks and is not production ready.
使用{!! !!}
:
{!! nl2br(@$get['result'][0]->jo_unit_2) !!}
使用
{!! nl2br(e(@$get['result'][0]->jo_unit_2)) !!}
{!! !!}
创建转义输出并允许 HTML(和 XSS 攻击)。
要使其再次安全,您还需要使用 e()
请参阅 helpers documentation。
所以我的表格中有一个 <textarea>
。用户可以输入新行或单行。因此,当用户查看文本时,它将显示为 he/she 输入方式。
表格
<textarea name="jo_unit" class = 'form-control' required="required" cols = '4'></textarea>
预期输出
测试 1
测试 2
测试 3
我得到了什么
我的显示代码
{{ nl2br(@$get['result'][0]->jo_unit_2) }}
Security: This code allows XSS attacks and is not production ready.
使用{!! !!}
:
{!! nl2br(@$get['result'][0]->jo_unit_2) !!}
使用
{!! nl2br(e(@$get['result'][0]->jo_unit_2)) !!}
{!! !!}
创建转义输出并允许 HTML(和 XSS 攻击)。
要使其再次安全,您还需要使用 e()
请参阅 helpers documentation。