摘要:
$session =Yii:: $app->session ;判断session是否开启$session->isActive 开启session$session ->open();向session中添加数据$se... 阅读全文
摘要:
$request =Yii:: $app->request ; 通过GET传递参数echo $request -> get ('tag', 20) ;$request -> isGet //判断是否为GET请求通... 阅读全文
摘要:
$response =Yii:: $app->response ; 设置响应码$response->statusCode ='404';设置不缓存参数$response ->headers-> add('pra... 阅读全文
摘要:
// 以下以basic版本为例1.修改config/web.php'components' => [ #code ... 'urlManager' => [ 'enablePret... 阅读全文
摘要:
In main.php config file add the following code into components array: 'components' => [ 'cache' => [ ... 阅读全文
摘要:
安装yii2-widget-select2插件链接地址 https://github.com/kartik-v/yii2-widget-select2修改_form.php文件#code ...use app\m... 阅读全文
摘要:
public function rules (){ return [ [['member_type' , 'member_name', 'member_sex', 'member_age',... 阅读全文
摘要:
安装yii2-date-picker-widget插件链接地址 https://github.com/2amigos/yii2-date-picker-widget修改index.php文件#code ...us... 阅读全文
摘要:
1.在companies表里面添加一个名字为logo类型varchar(255)字段 2.修改models下的companies.php文件class Companies extends \yii\db\Acti... 阅读全文
摘要:
1.修改index.phpuse yii\bootstrap \Modal;#code ... \yii \helpers\ Url::to ('index.php?r=branches/create') ... 阅读全文
摘要:
修改index.php,加上‘rowOptions’属性,实现回调的方法 下面的例子实现了:如果这行的branch_status 属性的值是inactive显示的背景是粉红色否则显示绿色 $dataProvid... 阅读全文
摘要:
在gii中生成model文件AuthItem.php和AuthAssignment.php修改SignupForm文件class SignupForm extends Model{# code...public ... 阅读全文
摘要:
修改models下的companies.php /*** @inheritdoc*/public function rules(){ return [ [['company_name' , ... 阅读全文
摘要:
php页面的代码:registerJs( $script);?>控制器的代码:use yii\helpers \Json;class LocationsController extends Controller{... 阅读全文