上一页 1 ··· 7 8 9 10 11 12 13 14 下一页

2018年9月29日

Yii 模型中attributeLabels()函数的作用

摘要: 1. 在rules验证的时候,如果报错,会把此处的后面的内容显示出来 则相应的位置就会报错 2. 在视图层 因为有了 label 的缘故,所以显示了这个, 如下图所示 如果忽略掉label() 则默认显示 attributeLabels() 里面的注释 阅读全文

posted @ 2018-09-29 16:08 刷哥 阅读(3049) 评论(0) 推荐(0) 编辑

YII 后端管理界面 图片显示源代码了

摘要: 在视图层: <?php if (!empty($model->content)) { ?> <?php foreach ($model->content as $key => $items): ?> 阅读全文

posted @ 2018-09-29 15:17 刷哥 阅读(297) 评论(0) 推荐(0) 编辑

2018年9月26日

having 和 where的区别

摘要: 区别1 where是从数据表中的字段直接进行的筛选的。 having是从 前面筛选的字段再筛选 eg: select goods_price,goods_name from goods having goods_price > 100 等价于 select goods_price,goods_nam 阅读全文

posted @ 2018-09-26 11:06 刷哥 阅读(4288) 评论(2) 推荐(0) 编辑

2018年9月21日

YII 模型model层添加新变量,渲染到视图层

摘要: 加完之后一定要,在该模型层下,写入rules() 里面,不写的话,就用不了,var_dump($lower_time_start);die; 捕获到错误,定义的变量为 空。 写在rule()规则就好了! 阅读全文

posted @ 2018-09-21 14:53 刷哥 阅读(451) 评论(0) 推荐(0) 编辑

视图层 表格里面的 的超链接

摘要: <div class="col-sm-12"> <?= GridView::widget([ 'dataProvider' => $dataProvider, 'columns' =>[ [ 'class' => 'yii\grid\ActionColumn', //必须 'header' => ' 阅读全文

posted @ 2018-09-21 11:32 刷哥 阅读(125) 评论(0) 推荐(0) 编辑

2018年9月18日

MySQL日记——查询优化

摘要: https://www.jianshu.com/p/31b58a41d172 阅读全文

posted @ 2018-09-18 10:09 刷哥 阅读(111) 评论(0) 推荐(0) 编辑

2018年9月17日

div 相同属性提取

摘要: 把样式名或id写在一起,用逗号隔开 阅读全文

posted @ 2018-09-17 17:39 刷哥 阅读(181) 评论(0) 推荐(0) 编辑

position 定位

摘要: position 属性的五个值: static relative fixed absolute sticky absolute 定位 绝对定位的元素的位置相对于最近的已定位父元素,如果元素没有已定位的父元素,那么它的位置相对于<html> h2 { position:absolute; left:1 阅读全文

posted @ 2018-09-17 17:16 刷哥 阅读(131) 评论(0) 推荐(0) 编辑

YII with()

摘要: 默认的,joinWith() 会使用 LEFT JOIN 去连接主表和关联表。 你可以通过 $joinType 参数指定不同的连接类型(比如 RIGHT JOIN)。 如果你想要的连接类型是 INNER JOIN,你可以直接用 innerJoinWith() 方法代替。 调用 joinWith() 阅读全文

posted @ 2018-09-17 14:52 刷哥 阅读(1810) 评论(0) 推荐(0) 编辑

2018年9月15日

开启Redis

摘要: 打开一个 cmd 窗口 使用cd命令切换目录到 redis目录下 (eg: G:\ cd redis) ==> G:\redis 运行 redis-server.exe redis.windows.conf 。 如果想方便的话,可以把 redis 的路径加到系统的环境变量里,这样就省得再输路径了,后 阅读全文

posted @ 2018-09-15 10:28 刷哥 阅读(323) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 下一页

导航