gpt4 book ai didi

cakephp - 在空 CakePHP 上调用成员函数 find()

转载 作者:行者123 更新时间:2023-12-05 04:14:54 26 4
gpt4 key购买 nike

我试图在表名联系人中显示我的所有数据,但它给我一个错误 Call to a member function find() on null。我不明白这是什么意思。请帮忙!

<?php  
class ContactsController extends AppController {
var $name = "Contacts";

public function index() {
$this->set('contacts', $this->Contacts->find('all'));
}
}
?>

最佳答案

在你的 Controller 中。

<?php  
class ContactsController extends AppController {
public function index() {
$this->set('contacts', $this->Contact->find('all')); // here the change Contacts to Contact.
}
}
?>

您的模型。

<?php  
class Contact extends AppModel {
var $name = "Contact";
}
?>

关于cakephp - 在空 CakePHP 上调用成员函数 find(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33797691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com