CakePHP v2.0 和命名参数

发布于 2024-12-12 01:08:10 字数 323 浏览 0 评论 0原文

我正在将网站迁移到 cakephp v2.0。在某些时候,我使用带有希腊字符的链接:

contents/library/category:κατηγορία

如果我 pr() 或 debug() $this->request->named['category'] 输出显示为 %CE%88%CE%BD%CF %84%CF%85%CF%80%CE%B1%20%CE%94。

因为它被传递给查找查询,所以它不返回任何数据。在 v1.3 中,字符没有转义。有什么改变吗?我什至尝试过 debug($var,false);但同样的情况也会发生。

I am migrating a site to cakephp v2.0. In some point I use a link with greek charactes:

contents/library/category:κατηγορία

If I pr() or debug() $this->request->named['category'] the output is shown with %CE%88%CE%BD%CF%84%CF%85%CF%80%CE%B1%20%CE%94.

And because it is passed to a find query it returns no data. In v1.3 the characters wasn't escaped. Has something changed? I even tried debug($var,false); but the same happens.

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

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

发布评论

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

评论(1

思念绕指尖 2024-12-19 01:08:10

当您通过 HTMLHelper 创建 URL 或从 FormHelper 接受 URL 时,它们现在会自动转义以防止恶意 URL 操作;非拉丁字符与所有非(拉丁)字母数字字符一样被转义。为了避免这种情况,请在选项数组中将“escape”设置为 false,如以下来自 CakePHP 2.0 书:

echo $this->Html->link(
    $this->Html->image("recipes/6.jpg", array("alt" => "Brownies")),
    "recipes/view/6",
    array('escape' => false)
);

When you're creating your URL via the HTMLHelper or accepting them from FormHelper they are automatically escaped now to prevent malicious URL manipulation; non-latin characters are escaped as are all non-(latin)alphanumeric characters. To avoid this set 'escape' to false in the options array, like the below example from the CakePHP 2.0 book:

echo $this->Html->link(
    $this->Html->image("recipes/6.jpg", array("alt" => "Brownies")),
    "recipes/view/6",
    array('escape' => false)
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文