gpt4 book ai didi

cakephp - 字段 "created"和 "modified"在 CakePHP3.0.0(dev preview 2) 中不会自动设置

转载 作者:行者123 更新时间:2023-12-04 07:38:10 24 4
gpt4 key购买 nike

出于好奇,我开始使用 CakePHP3.0。
为了熟悉CakePHP3.0的新特性,我关注了官网的博客教程(http://book.cakephp.org/3.0/en/tutorials-and-examples/blog/blog.html)。我所做的只是简单地复制和过去那里的源代码。
一切正常,除了“创建”和“修改”字段没有被保存。他们只是保持NULL。我已经确认此功能在 CakePHP 2.4.6 中运行良好。下面是博客教程的表定义和函数 add()。

CREATE TABLE articles (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(50),
body TEXT,
created DATETIME DEFAULT NULL,
modified DATETIME DEFAULT NULL
);

public function add(){
$article = $this->Articles->newEntity($this->request->data);
if($this->request->is("post")){
if($this->Articles->save($article)){
$this->Session->setFlash("Success!");
return $this->redirect(["action"=>"index"]);
}
$this->Session->setFlash("Fail!");
}
$this->set(compact("article"));
}

最佳答案

关于cakephp - 字段 "created"和 "modified"在 CakePHP3.0.0(dev preview 2) 中不会自动设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22855026/

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