CakePHP 在模型中调用 field()
我正在模型的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须先指定条件,像这样:
或者,我想你也可以尝试先设置id
You have to specify the conditions first, like so:
Or, I think you can also try setting the id first