html特殊字符
如果我在插入/编辑视图上使用表单提交像我的字符串这样的数据,在列表视图上我会得到斜体的字符串(就像这里)。
我怎样才能避免这种情况,并在所有表单上都有我的字符串(带有可见的所有html标签)?
即,它看起来像这样: my string
提前致谢!
if i submit data like my string using form on insert/edit view, on a list view i'll get my string as italic (like here).
how can i avoid that, and to have my string (with visible all html tags) on all forms?
i.e. so it appears like this: <i>my string</i>
thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因此,您会问,当您呈现数据库中存在的结果时,如何转义视图上的 HTML 代码……是这样吗?
假设这就是您所要求的,在您看来,您可以简单地包装数据库字段输出
So you're asking how you can escape the HTML code on your views when you render the results as they exist in the database... is that right?
Assuming that is what you're asking, in your view, you could simply wrap the DB field output
也许选项
'escape'=>true
会很有用,例如:Maybe the option
'escape'=>true
will be useful, like in: