CakePHP 在模型中调用 field()

发布于 2024-11-30 05:17:02 字数 175 浏览 0 评论 0原文

我正在模型的 php 中编写一个函数。 使用有什么问题吗

$this->field('something)

在模型内部 ?我可以使用其他东西,例如 $this->saveField(...) ,但由于某种原因,这不会正确返回表中的值。只是想确认一下,谢谢!

I am writing a function within the php of the model. Is there any issue with using

$this->field('something)

while inside the model? I can use other things like $this->saveField(...) fine but for some reason this is not returning me the value in the table correctly. Just wanted to make sure, thanks!

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

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

发布评论

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

评论(1

如痴如狂 2024-12-07 05:17:02

你必须先指定条件,像这样:

$this->field('field_name', $conditions);

或者,我想你也可以尝试先设置id

$this->id = $id;
$this->field('field_name');

You have to specify the conditions first, like so:

$this->field('field_name', $conditions);

Or, I think you can also try setting the id first

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