在视图中使用 $this 实现 Eclipse 代码补全
如果您在使用 Eclipse 对视图中的帮助器进行自动补全时遇到问题,请尝试以下操作:创建此文件 (helper_complete.php),将其添加到您的 app/View 目录中,刷新您的项目,所有操作都应该可以正常工作。(对我来说是有效的!)根据需要添加帮助器。
PHP 代码片段
<?php
App::uses('AppHelper', 'Helper');
/**
* this Helper
*
* @property Html $Html
* @property Session $Session
* @property Form $Form
*/
class this extends AppHelper
{
var $Html;
var $Session;
var $Form;
public function __contruct()
{
$this->Html = new HtmlHelper($View);
$this->Session = new SessionHelper($View);
$this->Form = new FormHelper($View);
}
}
$this = new this();
?>