我通过javascript和Productnames
控制器中的操作从表中获取行。
我得到的字段是productid,productname和bottletype。到目前为止,还好。
JS
<?php
$script = <<< JS
$('#catid').change(function(){
var catid = $(this).val();
$.get('index.php?r=production/productnames/get-for-production',{ catid : catid }, function(data){
alert(data.unitprice);
// var data = $.parseJSON(data);
// $('#productnames-bottletype').attr('value',data.bottletype)
});
});
JS;
$this->registerJs($script);
?>
ProductnamesController
中的操作public function actionGetForProduction($catid)
{
$bottle = Productnames::findOne(['productnames_productname'=>$catid]);
//$bottle -> select(['productnames.productnames_productname','productnames.bottletype','bottlename.unitprice'])->from('Productnames')->leftJoin('bottlename','productnames.bottletype = bottlename.bottlename')->where(['productnames_productname'=>$catid])->limit(1);
echo Json::encode($bottle);
}
现在,我想从与“产品名称”表相关的“瓶名称”表中获取数据,作为
productname.bottletype = bottlename.bottlename
。表
bottlename
具有3个字段:ID,瓶名,单价。
我从上面提到的代码中获得产品名,瓶名。我要获取的是单价以及上述数据。
下面是我现在得到的屏幕截图:
最佳答案
您应该在Productnames模型中具有与'bottlename'表的'bottlename'关系(我将其称为bottlenameRelation来与bottlename字段区分开):
public function getBottlenameRelation() {
return $this->hasOne(Bottlename::className(), ['bottlename' => 'bottletype']);
}
然后在操作中添加bottlenameRelation引用:
public function actionGetForProduction($catid)
{
$bottle = Productnames::find()->with('bottlenameRelation')->where(['productnames_productname'=>$catid])->asArray()->one();
echo Json::encode($bottle);
}
输出中的json将包含瓶名关系字段。
为了完整起见,您可以通过这种方式输出json,同时添加正确的HTTP标头:
public function actionGetForProduction($catid)
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$bottle = Productnames::find()->with('bottlenameRelation')->where(['productnames_productname'=>$catid])->asArray()->one();
return $bottle;
}