Zend_form:不接受拉丁字符(ú、ë 等?

发布于 2024-12-03 14:02:54 字数 94 浏览 0 评论 0原文

我无法让 Zend_form 接受任何插入的拉丁字符(ü、é 等)。 即使我没有验证它也不接受这一点。

现在有人如何让它发挥作用吗?

格。胡说

I can't get Zend_form to accept any inserted latin characters (ü, é, etc).
Even if I'm not validating it doesn't accept this.

Does anyone now how to get this to work?

Gr. Tosh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖伴 2024-12-10 14:02:54

经过几次测试,这似乎是一个简单的字符编码问题。

您的服务器可能未提供采用 UTF-8 编码的文档。您可以轻松地在视图/布局中强制执行此操作,方法是将其放置在 中(最好作为第一个子项)

<meta http-equiv="content-type" content="text/html;charset=UTF-8" />

,或者如果使用 HTML 5 doctype

<meta charset="utf-8">

设置 < code>Zend_View 编码以及在您的应用程序配置文件中,尽管这在我的测试中不是必需的(我认为“UTF-8”无论如何是默认值)

resources.view.encoding = "utf-8"

After doing a couple of tests, it seems to be a simple character encoding issue.

Your server is probably not delivering documents with UTF-8 encoding. You can easily force this in your view / layout by placing this in your <head> (preferably as the first child)

<meta http-equiv="content-type" content="text/html;charset=UTF-8" />

or if using a HTML 5 doctype

<meta charset="utf-8">

It probably doesn't hurt to set the Zend_View encoding as well in your application config file though this wasn't necessary in my tests (I think "UTF-8" is the default anyway)

resources.view.encoding = "utf-8"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文