branch.php <?php namespace app\models; use Yii; /** * This is the model class for table "branch". * * @property integer $id * @property string $name * */ class Branch extends \yii\db\ActiveRecord { /** * @inheritdoc */ public static function
因目前项目并非前后端分离模式,且用到PHP的yii2框架(所有html代码,js较多内嵌在.php文件内多少采用同步提交[喷墨中...]),遂对于前端面上需要用到的yii2小组件一些整理(因是前端若涉及到php写法错误或者风格问题,敬请指点) 使用场景尽量为表单 基础注册调用小组件 <?php use yii\helpers\Html; use yii\widgets\ActiveForm;?> //首先注册activeForm小部件,并赋值给$form(php中的声明变量方法用$ 等价于j
在 config/web.php 文件中会有以下配置代码开启该模块: $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', // uncomment the following to add your IP if you are not connecting from localhost. //'allowedIPs' => ['127.0.0.1', '::1'],
yii2中的gii无疑是非常强大的代码生成工具,以下是我学习使用gii的一些技巧,跟大家分享一下. 以User为例,在数据库中,创建user表. /*Navicat MySQL Data Transfer Source Server : localhost_3306Source Server Version : 50715Source Host : localhost:3306Source Database : blogdemo2db Target Server Type : MYSQLTarg