gpt4 book ai didi

cakephp - cakePHP 中的 save() 方法

转载 作者:行者123 更新时间:2023-12-04 14:43:06 24 4
gpt4 key购买 nike

我正在做一些关于cakePHP 1.26的自学。
我有一个包含两个字段的表 {topic, username}

我有一个像这样的简单 HMTL 表单:

<input type=text name="data[testing][topic]" id="data[testing][topic]"/>

来自此输入字段的数据已通过以下代码传递到特定 Controller :

$who=$this->Session->read('user.name'); // username retrieved successfully
$this->Testing->save($this->data);

当我检查数据库时,我只能看到输入文本字段中的数据,但是用户名字段为空。如何更改 Controller 中的代码,以便将从 session 中检索到的用户名保存到数据库中?

你能帮帮我吗?

最佳答案

像这样:

$who=$this->Session->read('User.id');
$this->data['Testing']['user_id'] = $who; // set the data
$this->Testing->save($this->data);

关于cakephp - cakePHP 中的 save() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3171587/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com