欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

YII框架这段代码是啥意思?是moudles里面view中default中的index.SegmentFault

程序员文章站 2022-06-11 19:04:49
...
breadcrumbs=array(
    $this->module->id,
);
?>


uniqueId . '/' . $this->action->id; ?>

This is the view content for action "action->id; ?>". The action belongs to the controller "" in the "module->id; ?>" module.

You may customize this page by editing

我想知道这个$this是哪来的?这也没有类啊!

回复内容:

breadcrumbs=array(
    $this->module->id,
);
?>


uniqueId . '/' . $this->action->id; ?>

This is the view content for action "action->id; ?>". The action belongs to the controller "" in the "module->id; ?>" module.

You may customize this page by editing

我想知道这个$this是哪来的?这也没有类啊!

注释里面不是写了吗?

$this DefaultController 

Yii view 里面的$this 是指当前controller,具体过程去看conroller的render方法.
因为是用Yii自身的renderer,所以调用的是ViewRenderer类的renderFile方法,
这方法接收一个$context参数,其实传的就是当前controller的实例对象,
然后再调这个controller的renderInternal方法,这个方法把view文件require进来了,
所以在view的$this其实是把当前controller传进来,然后调用传进来的controller的自身方法,把view文件require进来.

debug_print_backtrace 一看就知道

我心里有答案,但没实际用过YII,所以就只说方法了

相关标签: php yii