如何在MySQL数据库文本字段中创建粗体数据?
是否可以在 MySQL 数据库文本表字段中创建粗体文本?
我们正在将文章放入数据库中,我想创建粗体标题和副标题。这可能吗?谢谢
Is it possible to create bold text in a MySQL database text table field?
We are putting our articles in our database and I want to create bold titles and subtitles. Is this possible? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Markdown
我建议您使用 markdown 样式格式(PHP/.NET),这意味着粗体文本将像这样存储:
存储 HTML
如果您不能使用 markdown在你的项目中,你也可以存储 HTML - 我会非常小心你存储的标签。您不希望有人在您的数据库中发布
标签,例如:
后期样式化
或使用
title
和subtitle< 中的所有值/code> 字段在您的页面上打印时以粗体显示:
Markdown
I would advise you to use a markdown-style formatting (PHP/.NET), which would mean bold-text would be stored like this:
Storing HTML
If you can't use markdown on your project, you can store HTML as well - I would just be very careful about what tags you store. You wouldn't want somebody posting
<script/>
tags in your database for instance:Late-Styling
Or make all values from the
title
andsubtitle
fields bold when you print them on your page:从数据库获取字段后应进行粗体显示。字段的显示应加粗。
the bolding should be done after getting the fields from the database. the display of the fields should bold it.
您可以使用某种标记添加样式信息。如果您在 Web 应用程序中使用数据,显而易见的选择是使用 HTML 标记。
You can add styling information with some sort of markup. If you're using the data in a web application the obvious choice is to use HTML markup.