定义此basemodel,其它model继承basemodel
<?php
namespace app\models;
use Yii;
use yii\db\ActiveRecord;
use yii\behaviors\TimestampBehavior;
class BaseModel extends ActiveRecord
{
/**
* @inheritdoc
*/
public function behaviors()
{
return ...
此 cron 优点:
1,linux crontab 只需加入 ***** php yii init/cron
2, cron 通过 config 文件配置,修改配置后需执行 php yii init/crontab
3,重试机制,任务出错后将延缓5分钟执行,直到达到最大尝试次数后,标识为失败
4,兼容周期性任务、一次性任务
5,多线程执行任务,任务不阻塞
目录结构
...
场景描述:
mysql 中order 表有一个触发器,新增的order 将自动创建一个订单编号;编号为日期+今日订单数量
DELIMITER $$
USE `erp3.0`$$
DROP TRIGGER /*!50032 IF EXISTS */ `order_ext_id_insert`$$
CREATE
/*!50017 DEFINER = 'root'@'%' */
TRIGGER `order_ext_id_insert` BEFORE I...
开发配置是vuejs+element-ui,由于项目有些特殊功能,element-ui无法完全满足,我就fork了一份element-ui,并做了一些改动。
之后需要在package.json 中引入:
<span class="hljs-string">"dependencies"</span>: {
<span class="hljs-string">"element-ui"</span>: <span ...
git clone 时出现这个错误
error: RPC failed; curl 56 SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054
ffatal: early EOF
atal: The remote end hung up unexpectedly
fatal: index-pack failed
解决方法
First, turn off compression:
git config --global core.compression 0
Next...
public 目录下 .htaccess 文件增加
Header always unset X-Frame-Options
前提条件:在载入当前模板前已经实例化了produce_list Block
<?php
$block = $this->getLayout()->getBlock('product_list');
$_products=$block->getLoadedProductCollection();
123
<?php$block = $this->getLayout()->getBlock('product_lis...
vue 组件 component 在使用中很方便,在做一个后台管理系统时,却使用component 造成js体积庞大问题;
就这个问题,进行了优化,记录如下:
项目描述:
后台管理,公共头部,公共左侧栏目,右侧内容区域;
使用 main.js 将右侧页面全部载入,判断了页面 hash,将右侧对应的 vue 绑定给 rightComponent,页面使用
<ri...
Facebook Marketing Advertising Budget Rules
Power editer
Custom rule,自定义规则
Timed execution,定时执行
Automation without supervision,自动化,无需监管
addres...
Facebook Api Exception:(#17) User request limit reached
当使用facebook Marketing API 出现 Exception:(#17) User request limit reached 时的思路处理
1,去官网查看Exception:(#17) User request limit reached原因:
API Level Rate Limiting
Rate limiting is at the ad account level.
Rate limitation happe...