1

我在我的项目中使用 kartik-v/yii2-slider。

使用此代码,我添加了一个滑块 A 范围选择: 在此处输入图像描述

echo '<b class="badge">$10</b> ' . Slider::widget([
    'name'=>'rating_3',
    'value'=>'250,650',
    'sliderColor'=>Slider::TYPE_GREY,
    'pluginOptions'=>[
        'min'=>10,
        'max'=>1000,
        'step'=>5,
        'range'=>true
    ],
]) . ' <b class="badge">$1,000</b>';

我在(set_money)表中有 2 列最小值和最大值:min_money max_money

我如何将那个变量保存在我的数据库中!

我不知道如何在控制器中获取该变量

4

1 回答 1

1

在视图文件中,在表单中

<?php
echo '<b class="badge">$10</b> ' . Slider::widget([
    'name'=>'min_money',
    'value'=>'250,650',
    'sliderColor'=>Slider::TYPE_GREY,
    'pluginOptions'=>[
        'min'=>10,
        'max'=>1000,
        'step'=>5,
        'range'=>true
    ],
]) . ' <b class="badge">$1,000</b>';

在控制器中

public function actionCreate()
{
    $model = new Model; // give your actual model name instead of Model
    if($model->load(Yii::$app->request->post()))
    {
        list($model->min_money, $model->max_money) = explode(',', $model->min_money);
        // now both $model->min_money and $model->max_money are set and contains value submitted in form by Kartik Slider Widget
        if($model->save(true))
        {
            // success -> redirect
        }
        else
        {
            // error render to form again
        }

    }
}
于 2016-02-07T19:33:32.763 回答