- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在创建一个 yii 应用程序,我想将数据插入数据库,但问题是如何插入日期和时间。在我从数据库中删除日期时间列之前,它无法插入所有详细信息。
这是 Controller 类:
<?php
namespace app\controllers;
use amnah\yii2\user\models\User;
use app\models\Influence;
use Yii;
use yii\filters\AccessControl;
use yii\filters\VerbFilter;
use amnah\yii2\user\controllers\DefaultController as SuperDefault;
class DefaultController extends SuperDefault {
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'actions' => ['index', 'confirm', 'resend', 'logout'],
'allow' => true,
'roles' => ['?', '@'],
],
[
'actions' => ['account', 'profile','contact', 'resend-change', 'cancel','advertiser_dashboard','influencer_dashboard', 'influenza_info', 'advertiser'],
'allow' => true,
'roles' => ['@'],
],
[
'actions' => ['login', 'register','contact','influencer_dashboard', 'advertiser_dashboard','register_advert','forgot', 'reset', 'login-email', 'login-callback'],
'allow' => true,
'roles' => ['?'],
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'logout' => ['post', 'get'],
],
],
];
}
public function actionInfluenza_info()
{
$u_id = Yii::$app->user->id;
$user = User::findOne($u_id);
$influence= new Influence();
if ($influence->load(Yii::$app->request->post())) {
$influence_data = Yii::$app->request->post('Influence', []);
$influence->firstname = $influence_data['firstname'];
$influence->lastname = $influence_data['lastname'];
$influence->email = $influence_data['email'];
$influence->city = $influence_data['city'];
$influence->type = $influence_data['type'];
$influence->pic = $influence_data['pic'];
$influence->address = $influence_data['address'];
$influence->country = $influence_data['country'];
$influence->gender = $influence_data['gender'];
$influence->id = $u_id;
$influence->save();
Yii::$app->session->setFlash("Profile-success", Yii::t("user", "Profile updated"));
return $this->refresh();
} else {
return $this->render('influenza_info', [
'user' => $user,
'influence' =>$influence
]);
}
}
}
这是模型类
<?php
namespace app\models;
use Yii;
use app\controllers\Expression;
/**
* This is the model class for table "influence".
*
* @property integer $id
* @property integer $user_id
* @property string $firstname
* @property string $lastname
* @property string $email
* @property string $city
* @property string $type
* @property string $pic
* @property string $address
* @property string $country
* @property string $gender
*/
class Influence extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'influence';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['id', 'user_id', 'firstname', 'lastname', 'email', 'city', 'type', 'pic', 'address', 'country', 'gender'], 'required'],
[['id', 'user_id'], 'integer'],
[['firstname', 'lastname', 'email', 'city', 'type', 'pic', 'address', 'country', 'gender'], 'string', 'max' => 30]
];
}
public function beforeSave($insert)
{
if ($this->isNewRecord) { // new record only, otherwise time is inserted every time this record is updated
$this->created_at = new Expression('NOW()');
}
parent::afterSave($insert);
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'user_id' => 'User ID',
'firstname' => 'Firstname',
'lastname' => 'Lastname',
'email' => 'Email',
'city' => 'City',
'type' => 'Type',
'pic' => 'Pic',
'address' => 'Address',
'country' => 'Country',
'gender' => 'Gender',
'created_at' => 'Created_at',
];
}
}
表sql
CREATE TABLE `influence` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`firstname` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`lastname` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`city` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`pic` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`address` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`country` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`gender` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`created` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP
) ;
如何让它自动插入。如果我从我的管理员处尝试它,它会工作并获取日期和时间。但对于 yii 则不然。
最佳答案
为此,我从所需规则中删除了创建的属性。然后我创建一个 beforeSave() 方法,并在新记录上使用 Expression 插入它。
public function beforeSave($insert)
{
if ($this->isNewRecord) { // new record only, otherwise time is inserted every time this record is updated
$this->created = new Expression('NOW()');
}
parent::beforeSave($insert);
}
确保将表达式导入模型
更新更新代码感谢@crafter
关于php - Yii2 在 sql 中插入日期和时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34532404/
目前我的后端和前端都有 2 个 Yii 安装设置。但是在处理这个问题时,它会变得有点困惑,我想知道这是否以正确的方式完成。下面是如何设置我的文件夹结构的示例。 - backend - assets
如何禁用通知,我在 idex.php 中尝试但通知是回声,我如何禁用它。 在 php.ini 最佳答案 更新 public/index.php
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
'urlManager'=>array( 'urlFormat'=>'path', 'rules'=>array( '' => array('site/page/vie
从 Yii 到 Yii 2.0 这行代码怎么写: Yii::app()->getRequest()->getRestParams() ? 最佳答案 在我看来,相当于 Yii::app()->getRe
我想使用多个调用构建查询,但在使用此代码时出现错误 $command = Yii::app()->db->createCommand() ->select('*') ->from('{
Yii中我的模型规则函数中的以下代码 public function rules() { // NOTE: you should only define rules for those att
我正在开发一个带有主数据库和多个数据库的系统,每个客户端一次。当客户填写并提交包含所有必需详细信息的表单时,将创建客户数据库及其表。 我的问题:Yii 框架是否支持动态创建数据库和表?如果是这样,是否
我知道我可以在 Yii 中注册一个新的元标记并且我知道怎么做,但是我需要 替换我设置的默认标签,因为当我在一篇文章时,我想插入 元标记中文章的简短描述; 如何管理元标记? 最佳答案 如果您使用的是最新
我尝试仅在管理模块中加载 Yii Bootstrap 扩展,但它不起作用。我假设我需要预加载它或以某种方式启动它......谢谢! class AdminModule extends CWeb
我已经建立了新的 Yii2 项目。现在我想 reorganize folder structure在“public”和“app”两个文件夹中(实际上代表 protected 文件)。 框架中的所有代码
页面 Controller 访问规则: public function accessRules() { $isadmin = User::loadUser(
代理人: agent_id (primary key) 用户: f_id (foreign key) type 我以这种方式创建了关系 public function relations() {
大家好,感谢阅读。 我想知道如何将数字格式化为货币,或者只是在末尾附加 €。我在 yii 框架的管理页面上的 gridview 中工作。 我有这个,例如 'columns'=>array(
如何禁用 Yii 的内置身份验证? (/site/login ). 我正在使用扩展程序进行身份验证并且不想让内置登录保持打开状态 - 这可能是一个安全问题。 最佳答案 我认为您可以删除站点 Contr
使用 Yii,我想删除所有不是今天的行。 我的解决方案好吗? $query = "delete from `user_login_hash` where `day`!='".(date('Y-m-d'
gridview yii如何在一列数组值中显示两个关系值 在我的模型代码中有关系 $criteria->compare('exp.ExperienceYear',$this->Experience,
是他们对的任何常用方法吗?为我的 yii 项目添加扩展 ? 如何向我的 yii 添加扩展名 请解释 步骤 最佳答案 “ 应用程序配置 ”在安装扩展时起着重要作用。默认情况下,此配置将位于 php 文件
如何在 yii 中使用场景禁用文本字段?我有 3 类帐户 super 管理员、管理员和普通用户。所有 3 类用户都有权更新有关他们的信息,但其中一个字段 accountId 只能由 super 管理员
我在 yii 中找不到太多关于将默认范围应用于模型的文档,我想知道是否有人可以解释或指出我正确的方向。 我的问题的快速版本: 是否可以向默认范围添加关系,或者默认情况下向模型上的每个 AR 搜索添加“
我是一名优秀的程序员,十分优秀!