如何在 Kohana ORM v3 中设置列​​/成员

发布于 2024-09-25 14:42:39 字数 383 浏览 4 评论 0原文

class Model_User extends ORM {
  // columns: UserID, Name
  // public $Name ; // this didn't work
}

目前我创建一个对象: $user = new Model_User() ; 并访问如下列:

 $user->Name = 'My Name';

我想让我的 IDE 显示数据模型中的所有列以避免拼写错误,以及现在我可以使用哪些字段。

如何更新我的模型以便为我的 IDE 提供可能的列/属性的列表?我尝试将属性添加到类中,但这破坏了 ORM() 并且不再允许保存。我必须重写一些在从数据库读取列名后设置的基类属性。

class Model_User extends ORM {
  // columns: UserID, Name
  // public $Name ; // this didn't work
}

Currently I create an object:
$user = new Model_User() ;
and access columns like:

 $user->Name = 'My Name';

I'd like to have my IDE show me all the columns in the data model to avoid misspellings and to now right away what fields I can use.

How do I update my model to give my IDE the list of possible columns/properties? I tried adding the properties to the class but that broke the ORM() and no longer allowed saving. I must have overridden some base class property that gets set after reading in the column names from the database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

韬韬不绝 2024-10-02 14:42:39

使用 phpDoc@property 标签:

/**
   @property  string   Name     username
   @property  int      UserID   user ID (primary key)
 */
class Model_User extends ORM {
// ...
}

Use phpDoc's @property tag:

/**
   @property  string   Name     username
   @property  int      UserID   user ID (primary key)
 */
class Model_User extends ORM {
// ...
}
你怎么敢 2024-10-02 14:42:39

让它工作,必须使用 $ 继续属性名称

/**
  *   @property string $Name
  *   @property int $UserID
  */

Got it working, have to proceed property names with $

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