cakephp 模型中的附加方法导致 500 错误

发布于 2024-11-01 09:30:19 字数 427 浏览 0 评论 0原文

嘿, 我正在尝试使用模型中的一些附加方法来优化几个 cakephp 控制器,但返回了 500 内部服务器错误。有人能指出我正确的方向吗?

模型:

function getID($id) {
 $tmp = $this->find("all",array('conditions'=>array('Model.id'=>$id)));
 return $tmp;
}

控制器:

function getTotalQuestions(){
 $tmp=$this->Model->getID(7);
 debug($tmp);
}

有时我不会收到 500 错误,但会收到一条错误消息,告诉我没有变量已传递给 getID。

任何帮助将不胜感激 塔夫

Hey,
I am trying to optimise a couple of cakephp controllers with some additional methods in the model but am getting a 500 Internal Server error returned. Can anyone point me in the right direction please?

Model:

function getID($id) {
 $tmp = $this->find("all",array('conditions'=>array('Model.id'=>$id)));
 return $tmp;
}

Controller:

function getTotalQuestions(){
 $tmp=$this->Model->getID(7);
 debug($tmp);
}

Occasionally I don't get a 500 error, but an error message telling me no variable has been passed to getID.

Any help would be greatly appreciated
Taff

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

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

发布评论

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

评论(1

漆黑的白昼 2024-11-08 09:30:19

这就是你如何表述你的功能(最有可能)。您需要更改函数名称的格式:

function get_id($id = null) {
   // code here
}

function get_total_questions() {
   $tmp = $this->Model->get_id(7);
  // ...
}

看看 http://book.cakephp.org/view/908/Requirements#!/view/904/Controller-Conventions 了解更多详细信息。但它指出:

惯例是您的网址是
小写并加下划线,因此
/red_apples/go_pick 是正确的
形式来访问
RedApplesController::go_pick 操作。

It is how you are wording your functions (most likely). You need to change the format of the function names:

function get_id($id = null) {
   // code here
}

function get_total_questions() {
   $tmp = $this->Model->get_id(7);
  // ...
}

Take a look at http://book.cakephp.org/view/908/Requirements#!/view/904/Controller-Conventions for more details. But it states:

the convention is that your urls are
lowercase and underscored, therefore
/red_apples/go_pick is the correct
form to access the
RedApplesController::go_pick action.

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