一、config文件中配置(不是放在components中): 'aliases'=>[ '@home'=>'www.qinimai.com' ], 二、bootstrap.php文件中配置: Yii...阅读更多
一、config文件中配置(不是放在components中): 'aliases'=>[ '@home'=>'www.qinimai.com' ], 二、bootstrap.php文件中配置: Yii...阅读更多
一、config main.php文件中components添加配置:'view'=>[ 'theme'=>[ &nb...阅读更多
在config main.php里面配置: //清除yii2自动的jquery 'assetManager'=>[ 'bundles'=>[ &nb...阅读更多
<?php Pjax::begin(['options'=>['id'=>'pjax-container']]); ?> <?php...阅读更多
一、Yii2 LinkPager控制器中使用 //分页插件 $query = Country::find(); $countQuery = clone $query; $pages = new Paginat...阅读更多
<?php $form=ActiveForm::begin([ 'id'=>'login-form',//基本配置 'action'...阅读更多
Pjax::begin(['id'=>'countries']); GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, ...阅读更多
yii明显是一个配置驱动的应用,也可以说是数据驱动,通过配置文件来个性化定义,其中有些常用属性最好稍微记忆一下,方便将来使用的时候可以想到并有效利用。譬如对于一些常用的长namespace、全局变量、数据库配置、全局响应页面、加入组件等。 必要属性 ...阅读更多
Yii2怎么引入css和js文件 1.首先需要在模板文件中添加 use frontend\assets\AppAsset; AppAsset::register($this); <?php $this--->beginPage() ?&...阅读更多
一、数据库查询 $sql='select * from test where id=:id'; $results=Test::findBySql($sql,[':id'=>1])->all(); $results=Test::find()->...阅读更多