嗨。当前,我正在CakePHP 2.10.12中的Behavior中创建一个函数,如下所示:
<?php
App::uses('CakeTime', 'Utility');
App::uses('CakeNumber', 'Utility');
class ConverterBehavior extends ModelBehavior {
private $timezone;
private $locale;
private $currency;
function hellow() {
return "Hellow from behavior";
}
function initConverter($locale, $timezone, $currency) {
$this->locale = $locale;
$this->timezone = $timezone;
$this->currency = $currency;
setlocale(LC_ALL, $locale);
}
public function getCurrentLocale() {
return $this->locale;
}
function convertCurrency($currencyAmount) {
return CakeNumber::currency($currencyAmount, $this->currency);
}
function convertDate($date) {
return CakeTime::i18nFormat($date, null, false, $this->timezone);
}
}
?>
然后我的模型使用上述行为,如下所示:
<?php
class Test extends AppModel {
public $actsAs = array('Converter');
}
然后调用从控制器中的行为创建的函数,如下所示:
public function converterModel() {
$this->Test->initConverter('ja_JP', 'Asia/Tokyo', 'JPY');
$temp = $this->Test->convertCurrency(23456789901.123456);
debug($this->Test->hellow());
// $this->set('jpDate', $this->Test->convertDate(new DateTime));
}
问题是initConverter
无法初始化。我检查了从控制器输入的variabel,所有这些variabel均为空(很奇怪)。但是,当我调用hellow(
(行为函数)时,结果将显示在我的视图中。那么,这里缺少什么吗?
谢谢
答案 0 :(得分:1)
看看警告/通知,您收到的对象是您希望输入字符串/数字的地方。
外部调用的行为方法的第一个参数将始终是该行为所附加的模型的实例,即,您的方法签名应类似于:
function initConverter(Model $model, $locale, $timezone, $currency)
function convertCurrency(Model $model, $currencyAmount)
// etc...
另请参见