-
苹果手机页面高度不够会导致下面fixed的按钮看不到了
摘要:苹果手机页面高度不够会导致下面fixed的按钮看不到了
阅读全文
-
IOS系统倒计时直接到结束的问题解决
摘要:后台传日期格式到前端js: 具体要求是 日期要用/隔开,否则会触发直接倒计时结束: //苹果倒计时只能用 / 不然直接会跳转到0 if($this->clientOS() == 'iphone'){ $this->assign('end_time', date('Y/m/d H:i:s', $use
阅读全文
-
TP6集成gatewayworker报错解决
摘要:报错如下:Class 'GatewayWorker\Protocols\GatewayProtocol' not found 怎么都无法自动引入类的: 解决方法修改文件为require_once: vendor\workerman\gateway-worker\src\Gateway.php中加入
阅读全文
-
easywechat实现公众号支付jsapi支付
摘要:easy引入请使用composer自行处理 php代码: if ($order['pay_price'] > 0) { /*返回给支付二维码 还有官方收款码*/ $app = $this->get_wechat_pay_app(); $jssdk = $app->jssdk; $pay_param
阅读全文
-
thinkphp6 model中onAfterUpdate导致502
摘要:在model里面onAfterUpdate里面调用$model->save()报502了,好像因为save直接触发了onAfterUpdate 导致无限循环,后来使用self::where()->save()就好了
阅读全文
|