我尝试显示来自数据库文章的数据......内容包含html标签和长文本。 所以我想更多地阅读并将标签html转换为html视图..
这是我的代码运行:
{{HTML :: decode($ show-> content)}}
{{str_limit($ show-> content,$ limit = 100,$ end =' ...')}}
我试试这个:
{{HTML :: decode(str_limit($ show-> content,$ limit = 100,$ end =' ...'))}}
{{str_limit(HTML :: decode($ show-> content),$ limit = 100,$ end =' ...')}}
但不显示(空白)
annyone可以帮我解决它吗?
谢谢你b4
答案 0 :(得分:0)
{{ $show->content }}
是否要格式化任何数据?
你的模板是.blade吗?
也许它放在HTML中的某个地方,它不可见?
尝试使用此结构和一些预定义的字符串来查明它是否有效。这是一个有效的例子:
{{ str_limit('Some big text', $limit = 5, $end='...') }}