Yii2型铸造列为整数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yii2型铸造列为整数相关的知识,希望对你有一定的参考价值。
在Yii2中,我有一个模型,例如Product
。我想要做的是从数据库中选择一个额外的列作为int
这是我正在做的一个例子:
Product::find()->select(['id', new Expression('20 as type')])
->where(['client' => $clientId])
->andWhere(['<>', 'hidden', 0]);
问题是,我得到的结果为“20”。换句话说,20作为字符串返回。如何确保所选的是整数?
我也试过以下但它不起作用:
Product::find()->select(['id', new Expression('CAST(20 AS UNSIGNED) as type')])
->where(['client' => $clientId])
->andWhere(['<>', 'hidden', 0]);
答案
您可以在Product
的afterFind()
函数中手动进行类型转换或使用AttributeTypecastBehavior
。
但最重要的是,您必须为查询中使用的别名定义自定义attribute
。例如,如果你使用$selling_price
作为别名,你的Product
模型中的selling _price
。
public $selling_price;
之后,您可以使用以下任何一种方法。
以下示例
public function afterFind() {
parent::afterFind();
$this->selling_price = (int) $this->selling_price;
}
以下示例
public function behaviors()
{
return [
'typecast' => [
'class' => yiiehaviorsAttributeTypecastBehavior::className(),
'attributeTypes' => [
'selling_price' => yiiehaviorsAttributeTypecastBehavior::TYPE_INTEGER,
],
'typecastAfterValidate' => false,
'typecastBeforeSave' => false,
'typecastAfterFind' => true,
],
];
}
以上是关于Yii2型铸造列为整数的主要内容,如果未能解决你的问题,请参考以下文章