在config main.php里面配置: //清除yii2自动的jquery 'assetManager'=>[ 'bundles'=>[ &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、全局变量、数据库配置、全局响应页面、加入组件等。 必要属性 ...阅读更多
Github访问慢解决办法 1、首先找到本地host文件,路径一般如下: C:\WINDOWS\system32\drivers\etc 2、其次选取一个TTL值最小的ip,直接绑定到hosts文件便可解决,比如我选取第一个ip,绑定域名如下 ...阅读更多
首先,打开wamp的目录,找到该目录下的httpd.conf文件(C:\wamp\bin\apache\apache2.4.9\conf)。 其次,搜索:LoadModule rewri...阅读更多
Yii2 中 设置 Meta标签keywords 和 descripition的方法其实很简单,和title的使用方法类似,只需要使用以下方法就可以了。 //标题 $this->title='title' //Meta标签 $this->regi...阅读更多
Yii2怎么引入css和js文件 1.首先需要在模板文件中添加 use frontend\assets\AppAsset; AppAsset::register($this); <?php $this--->beginPage() ?&...阅读更多