HTML Unicode 问题字符在输入框中无法正确显示
我有一个表单,当我尝试输入文本(如一些 unicode 字符)并保存到数据库时。再次检索数据时,字符将替换为“?”在输入框(输入类型=“文本”)字符中。 (注意:字符在 html 正文中正确显示)
我有 在我的页面
我的输入是
Hợp đồng kinh tế
检索文本后就像
h?p d?ng kinh t?
I am having a form and when i am trying to input text like some unicode characters and saving to database. While retrieving the data again the characters are replacing with '?' in inputbox (input type="text") characters. (Note: the characters are correctly displaying in html body)
I am having <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
in mypage
My input is
Hợp đồng kinh tế
After retrieving the text is like
h?p d?ng kinh t?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
抱歉问错问题了。
问题仅与数据库中的数据类型有关。我将数据类型从 varchar 更改为 nvarchar
Sorry for the wrong question.
The problem is with Datatype in DATABASE only. I changed the datatype from varchar to nvarchar
你使用什么数据库?如果是 MySQL,您可能需要相应地配置您的连接:
What database do you use? If it is MySQL, you may want to configure your connection accordingly: