有没有办法让 Netbeans PHP 与 CakePHP2 延迟加载完美配合?
在 CakePHP 1.3 中,我通常将模型属性定义和 PHPDoc 添加到我的模型和控制器中,如下所示:
/**
* @var Vegetable
*/
public $Vegetable;
在 Netbeans 中,这提供了“Intellisense”式自动建议,显示 PHPDoc 信息,并且通常是一个福音。不幸的是,在 CakePHP 2 中,这似乎会导致模型延迟加载失败,因为永远不会为已经存在的属性调用魔术方法 __isset() 和 __get() 。
缺乏自动建议将是一颗难以吞咽的苦果——有人遇到过这个问题吗?你能看到任何解决方法吗?
In CakePHP 1.3 I usually add model property definitions and PHPDoc to my models and controllers like so:
/**
* @var Vegetable
*/
public $Vegetable;
In Netbeans this gives "Intellisense"-style autosuggestion, displays PHPDoc information, and is generally a boon. Unfortunately in CakePHP 2 it seems that this causes the model lazy-loading to fail because the magic methods __isset()
and __get()
are never called for properties that already exist.
The lack of autosuggest would be a bitter pill to swallow - has anyone come across this issue, and can you see any workarounds?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用@property注释(在类描述中)。
Use @property annotation (in class decription).