//定义是mycontroller.php
namespace appcomponents;
use yiibasewidget;
use yiihelpershtml;
class HelloWidget extends Widget
{
public $message;
public function init()
{
parent::init();
if ($this->message === null) {
$this->message = 'Hello World';
}
}
public function run()
{
return Html::encode($this->message);
}}
//然后调用是在view中
use appcomponentsHelloWidget;
?>
= HelloWidget::widget(['message' => 'Good morning']) ?>
//结果报错找不到组件
Class 'appcomponentsHelloWidget' not found
请问我定义是不是错了呀?
//定义是mycontroller.php
namespace appcomponents;
use yiibasewidget;
use yiihelpershtml;
class HelloWidget extends Widget
{
public $message;
public function init()
{
parent::init();
if ($this->message === null) {
$this->message = 'Hello World';
}
}
public function run()
{
return Html::encode($this->message);
}}
//然后调用是在view中
use appcomponentsHelloWidget;
?>
= HelloWidget::widget(['message' => 'Good morning']) ?>
//结果报错找不到组件
Class 'appcomponentsHelloWidget' not found
请问我定义是不是错了呀?
命名空间的问题
很少用app开始的明明空间,一般都是common/components;或者根据模块来,frontend backend
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号