savefield() 创建新行或记录而不是更新特定记录

发布于 2024-09-13 07:23:55 字数 454 浏览 3 评论 0原文

我使用 cakePHP 1.26。
我在一个表中得到了一些示例数据,该表有两个字段:{user_id,avatar}
我试图更新数据库中的旧记录:

 $who=$this->Session->read('user.user_id'); // 12 was retrieved in this case
 $c = "http://www.abc.com/myimage.gif";
 $this->Test->User->user_id = $who;
 $result = $this->Test->User->saveField('avatar',$c);
  if( $result==true){return "ok";}

当我检查数据库时,我看到创建了一条新记录,但 user_id 12 的旧记录根本没有更新

请帮忙。

I am using cakePHP 1.26.
I got some sample data in a Table which has got two field: {user_id, avatar}
I was trying to update an old record in the database :

 $who=$this->Session->read('user.user_id'); // 12 was retrieved in this case
 $c = "http://www.abc.com/myimage.gif";
 $this->Test->User->user_id = $who;
 $result = $this->Test->User->saveField('avatar',$c);
  if( $result==true){return "ok";}

When I checked the database, I saw a new record was creeated instead, but the old record with user_id 12 was not updated at all

Please help.

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

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

发布评论

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

评论(1

柠栀 2024-09-20 07:23:55

问题就在这里:

$this->Test->User->user_id = $who;

假设您有正常的 CakePHP DB 约定,它应该是:

$this->Test->User->id = $who;

The problem is here:

$this->Test->User->user_id = $who;

Assuming that you have normal CakePHP DB convention it should be:

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