CakePHP 中缺少方法

发布于 2024-12-11 23:27:16 字数 274 浏览 0 评论 0原文

我的 CakePHP 遇到这个恼人的问题

Missing Method in GamesReviewsController

错误:动作 deadspace2.html 未在控制器 GamesReviewsController 中定义 错误:在文件 app/controllers/games_reviews_controller.php 中创建 GamesReviewsController::deadspace2.html()。

可能有什么问题?

Have this annoying problem with my CakePHP

Missing Method in GamesReviewsController

Error: The action deadspace2.html is not defined in controller GamesReviewsController
Error: Create GamesReviewsController::deadspace2.html() in file: app/controllers/games_reviews_controller.php.

What could be a problem?

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

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

发布评论

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

评论(1

素罗衫 2024-12-18 23:27:16

确保 cake 路由配置中的 Router::parseExtensions 允许 html 扩展。所以你必须有以下字符串:

Router::parseExtensions('xml','csv','txt','pdf', 'html')

在 /app/config/routes.php 中

Make sure Router::parseExtensions in cake routes config allows html extension. So you must have following string:

Router::parseExtensions('xml','csv','txt','pdf', 'html')

in your /app/config/routes.php

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