有没有办法让 Netbeans PHP 与 CakePHP2 延迟加载完美配合?

发布于 2024-12-19 21:04:53 字数 327 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假面具 2024-12-26 21:04:53

使用@property注释(在类描述中)。

Use @property annotation (in class decription).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文