383 篇
建站知识总结与分享
搜索“ThinkPHP”
thinkphp5.1链式操作comment注释
web 0 0
2335 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-COMMENT方法 用于在生成的SQL语句中添加注释内容 */ public function commen...
thinkphp5.1链式操作cache缓存
web 0 0
2421 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-cache方法用于查询缓存操作,也是连贯操作方法之一。 * cache可以用于select、find、valu...
关于thinkphp连贯操作加锁的详细介绍lock
web 0 0
2666 0 2019-01-10 ThinkPHP
官网上面的加锁介绍不是很详细,我给详细说一下 首先,数据库类型要是InnoDB,其次,加锁必须跟事务同时使用,还有,查询的时候都必须带锁,比如: $user_mod->lock(true)->where('id=1')->select();这个地方用锁查询,其次地方如果查询这个user对象需要防止同时操作的话也...
thinkphp5.1链式操作lock
web 0 0
3044 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-Lock方法是用于数据库的锁机制,如果在查询或者执行操作的时候使用: * 就会自动在生成的SQL语句最后加上 F...
thinkphp5.1链式操作distinct去重,去除重复
web 0 0
2626 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-DISTINCT 方法用于返回唯一不同的值 。 * distinct方法的参数是一个布尔值。 */ pub...
thinkphp5.1链式操作union
web 0 3
3396 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-UNION操作用于合并两个或多个 SELECT 语句的结果集。 * UNION 内部的 SELECT 语句必须拥...
thinkphp5.1链式操作join
web 0 0
2588 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-JOIN方法用于根据两个或多个表中的列之间的关系,从这些表中查询数据。join通常有下面几种类型,不同类型的join...
thinkphp5.1链式操作having
web 0 0
2656 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-HAVING方法用于配合group方法完成从分组的结果中筛选(通常是聚合条件)数据。 * having方法只有一...
thinkphp5.1链式操作group
web 0 0
2518 0 2019-01-10 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-GROUP方法通常用于结合合计函数,根据一个或多个列对结果集进行分组 。 * group方法只有一个参数,并且只...
thinkphp5.1链式操作order
web 0 0
2778 0 2019-01-09 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-order方法用于对操作的结果排序或者优先级限制。 */ public function order(...
thinkphp5.1链式操作page
web 0 0
2086 0 2019-01-09 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-page方法主要用于分页查询。 */ public function page(){ $rs = Db::...
thinkphp5.1链式操作limit
web 0 0
2195 0 2019-01-09 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-limit方法主要用于指定查询和操作的数量。 */ public function limit(){ //...
thinkphp5.1链式操作strict
web 0 0
2681 0 2019-01-09 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-strict方法用于设置是否严格检查字段名 */ public function strict(){ //...
thinkphp5.1链式操作field
web 0 0
2385 0 2019-01-09 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-field方法主要作用是标识要返回或者操作的字段,可以用于查询和写入操作。 */ public functio...
thinkphp5.1显式的调用所有字段
web 0 0
2275 0 2019-01-09 ThinkPHP5.1
Db::table('think_user')->field(true)->select(); field(true)的用法会显式的获取数据表的所有字段列表,哪怕你的数据表有100个字段。 刚开始不太理解,什么是显式的调用所有字段,以及和下面两句的差别 Db::table('think_user')->s...
thinkphp5.1链式操作alias别名
web 1 1
2799 0 2019-01-09 ThinkPHP5.1
<?php namespace app\index\model; use think\Model; use think\Db; class Articles extends Model { /** * 链式操作-alias */ public function alias(){ // alias用于设置当前数据表的别...
关于本站

“最难不过坚持”

本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作

有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339

7455425 2655 39
最新评论
https://jueru.net/
评 留言
:weixiao:
评 留言
:shuijiao: :weiqu: :zhenbang: :leng:
评 留言
:yiwen: :yiwen: :yiwen: :yiwen:
评 EasySass: could not generate CSS file. See Output panel for details.
这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
评 TP6模型事件-查询后onAfterRead不好用
文章标签更多
ThinkPHP (254)
Mysql (58)
DedeCms (33)
jQuery (67)
证件照 (1)
setInc (4)
setDec (4)
onclick (5)