cakephp datasource Call to undefined method(cakephp 数据源调用未定义的方法)
问题描述
我创建了一个简单的datasource
:
// app/Model/Datasource/FeedSource.php
App::uses('DataSource', 'Model/Datasource');
class FeedSource extends DataSource {
public function abcd() {
echo 'Hello World!';
}
}
在我的database.php
中:
public $feed = array(
'datasource' => 'FeedSource'
);
在 Feeda
模型中:
class Feeda extends AppModel {
public $useTable = false;
public $useDbConfig = 'feed';
}
在list
控制器中:
$this->loadModel('Feeda');
$this->Feeda->abcd();
但是,它返回一个致命错误:
But, it returns a fatal error:
Error: Call to undefined method FeedSource::query()
如何解决?
谢谢...
推荐答案
也许你的意思是 DboSource
而不是 DataSource
.
Perhaps you meant DboSource
instead of DataSource
.
DataSource 没有方法查询,DboSource 有.将您的代码更新为:
DataSource has no method query, DboSource does. Update your code to look like:
App::uses('DboSource', 'Model/Datasource');
class FeedSource extends DboSource {}
看起来这不是问题.在 Model
中有一个神奇的 __call 方法,它调用$this->getDataSource()->query($method, $params, $this);
来源你需要自己实现这个.
Looks like that is not the issue. In the Model
there is a magic __call method which calls
$this->getDataSource()->query($method, $params, $this);
Source You need to implement this yourself.
class FeedSource extends DataSource {
public function abcd() {
echo 'Hello World!';
}
public function query($method, $params, $Model) {
// you may customize this to your needs.
if (method_exists($this, $method)) {
return call_user_func_array(array($this, $method), $params);
}
}
}
这篇关于cakephp 数据源调用未定义的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:cakephp 数据源调用未定义的方法
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01