我在yii2做我的项目。 我有从db到下拉列表获取数据的表单(使用kartik depdtop小部件)。 第一个字段是“type_of_goods”,取决于“type_of_goods”客户收到“商品”。 在它们是两个文本输入字段后,“goods_amount”和“total_cost”的商品取决于“goods_amount”(goods_amount * price)。
客户输入他想要购买的商品金额,或者他想要购买的金额,js脚本在两种情况下都显示他在另一个领域的价值。
价格值在DB的货物表中。 我可以从“货物”字段中获取goods_id或一些关于商品的信息(执行数据库查询并获取价格并将其放入js函数中),或者甚至可以将其放入js脚本中,这样做我上面写的东西。< / p>
我怎么能意识到这一点?这是正确的方法吗?
代码: 图
<?php $form = ActiveForm::begin([
'options' => [
'class' => 'form-horizontal col-lg-11',
'enctype' => 'multipart/form-data'
],
]); ?>
<?= $form->field($type_of_goods, 'id')
->dropDownList(
ArrayHelper::map(Type_of_goods::find()->all(), 'id', 'name'),
['id'=>'type_of_goods_id']
);
?>
<?= $form->field($goods, 'id')->widget(DepDrop::classname(), [
'options' => ['id' => 'id'],
'pluginOptions' => [
'depends' => ['type_of_goods_id'],
'placeholder' => 'Choose your goods',
'url' => \yii\helpers\Url::to(['goods/goods-dep-type'])
]
]);
?>
<?= $form->field($goods, 'price')->textInput();
?>
<?= $form->field($order, 'amount')->textInput();
?>
<?php ActiveForm::end(); ?>
控制器:
public function actionGoodsDepType()
{
$out = [];
if (isset($_POST['depdrop_parents'])) {
$parents = $_POST['depdrop_parents'];
if ($parents != null) {
$game_id = $parents[0];
$out = \app\models\Goods::gelGoodsList($goods_type_id);
echo Json::encode(['output' => $out, 'selected' => '']);
return;
}
}
echo Json::encode(['output' => '', 'selected' => '']);
}
型号:
public static function gelGoodsList($type_id)
{
$query = self::find()
->where(['type_id' => $type_id])
->select(['id', 'name'])->asArray()->all();
return $query;
}
public static function getPrice($id)
{
$query = self::find()
->where(['id' => $id])
->select(['price'])->asArray()->one();
return $query;
}
答案 0 :(得分:0)
每次用户输入新值时,您都需要创建一个AJAX请求。这可能效果很好(位于视图文件的底部):
$this->registerJs("
$('#Type_of_goods-price').on('change', function() { // Should be ID of a field where user writes something
$.post('index.php?r=controller/get-price', { // Controller name and action
input_price: $('#Type_of_goods-price').val() // We need to pass parameter 'input_price'
}, function(data) {
total_price = $.parseJSON(data)['result']; // Let's say, controller returns: json_encode(['result' => $totalPrice]);
$('#Type_of_goods-total').value = total_price; // Assign returned value to a different field that displays total amount of price
}
});
");
您只需要设置正确的元素正确的ID并在控制器中编写一个方法(使用此示例,它将是controller
控制器名称和actionGetPrice
方法名称。)