2020/5/8

linux定时任务

用crontab -e进入当前用户的工作表编辑,是常见的vim界面。每行是一条命令。 crontab的命令构成为 时间+动作,其时间有分、时、日、月、周五种,操作符有 *  取值范围内的所有数字 /  每过多少个数字 -  从…

  • linux
  • 2020/5/8
  • helei
  • 613
  • 2020/5/7

    yii设置后台默认主页

    'defaultRoute'

  • yii
  • 2020/5/7
  • helei
  • 1,359
  • 2020/5/6

    修改maven中央仓库地址

    在mirrors下面添加 <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/…

  • maven
  • 2020/5/6
  • helei
  • 661
  • 2020/3/31

    yii index页面自定义html

    [ 'format' => ['raw'], 'value' => function($data){ $button = ''; if($data->img==null){ $button .= Html::a('未上传图片',['update', 'id' => $data->id], …

  • yii
  • 2020/3/31
  • helei
  • 912
  • 2020/3/31

    yii2显示图片

    $this->registerCssFile(Yii::$app->request->baseUrl.'/css/zoom.css'); $this->registerJsFile(Yii::$app->request->baseUrl.'/js/zoom.js'); [ 'attribute' => 'img', 'forma…

  • yii
  • 2020/3/31
  • helei
  • 905
  • 2020/3/31

    Yii2 下拉框带搜索功能并关联数据库数据

    use kartik\select2\Select2; use yii\helpers\ArrayHelper; <?php echo $form->field($model, 'num')->label('自编号')->widget(Select2::classname(), [ 'data' => ArrayHelper::map(TaxiYiingyunI…

  • yii
  • 2020/3/31
  • helei
  • 970
  • 2020/3/27

    html div 居中

    transform: translate(0, -50%);//偏移量 display:flex;align-items:center; justify-content:center;

  • css
  • 2020/3/27
  • helei
  • 930