摘要:
解决微信返回按钮到上一页页面不刷新的问题 <script type="text/javascript">window.onpageshow = function(event){ if (event.persisted) { window.location.reload(); }}</script> 阅读全文
摘要:
http://url.cn/4784coc 阅读全文
摘要:
Yii2 获取模块名、控制器名、方法名 在视图中: 模块名 $this->context->module->id 控制器名 $this->context->id 方法名 $this->context->action->id 在控制器中 模块名 Yii::$app->controller->modul 阅读全文
摘要:
public function getMember1(){ return $this->hasOne(Member::className(), ['wechat_id' =>'toid']); } public function getMember2(){ return $this->hasOne( 阅读全文
摘要:
数据库如下: /* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50553 Source Host : localhost:3306 Source Database : oauth2 Ta 阅读全文
摘要:
什么是RESTful风格的API 对于各种客户端设备与服务端的通信,我们往往都通过API为客户端提供数据,提供某种资源。关于RESTful的概念,一查一大推,一两句也解释不清,姑且先按照我们通俗的理解:在众多风格、众多原则的API中,RESTful就是一套比较优秀的接口调用方式。 Yii2如何实现R 阅读全文
摘要:
yii2 – redis 配置 转自:http://www.fancyecommerce.com/2016/05/03/yii2-redis-%E9%85%8D%E7%BD%AE/ 安装redis wget http://download.redis.io/releases/redis-3.2.8. 阅读全文
摘要:
yii2增删改查 // 返回 id 为 1 的客户 $customer = Customer::findOne(1); // 返回 id 为 1 且状态为 *active* 的客户 $customer = Customer::findOne([ 'id' => 1, 'status' => Cust 阅读全文
摘要:
yii2 ActiveRecord多表关联以及多表关联搜索的实现 yii2 ActiveRecord多表关联以及多表关联搜索的实现 一个老生常谈的问题。最近通过群里的反馈,觉得很多人还是没有去理解这个问题。今天把这个问题讲明白了,看看yii2 ActiveRecord是怎么个多表关联以及如何去优化这 阅读全文
摘要:
开发中经常会用到的方法小结: 1、./yii migrate xxx_xx 在表中插入某字段 : 修改表中某字段: 增加索引: 创建数据表: 删除某字段: 删除某张表: 2/./yii migrate 默认执行 ./yii migrate/up ./yii migrate/down 执行某些撤销对表 阅读全文