摘要:
<script> document.getElementById("mobile").focus(); var vm = new Vue({ el:"#app", data:{ msgmobile: '' }, methods:{ changemobile:function(){ var mobil 阅读全文
摘要:
1.在创建项目之前,我们先在虚拟机中运行以下命令来实现 Composer 安装加速 : $ composer config -g repo.packagist composer https://packagist.phpcomposer.com1或者https://laravel-china.org 阅读全文
摘要:
composer create-project --prefer-dist laravel/laravel blog https://blog.csdn.net/qq_34418024/article/details/78966299 阅读全文
摘要:
https://blog.csdn.net/dwf_android/article/details/78412828 阅读全文
摘要:
需求场景: 最近公司做了一个小游戏想通过小游戏来吸一波粉丝到指定的订阅号,类似关注公众号后领取100钻石。(模仿微信爱微游,疯狂游乐场)游戏有用户系统(根据openid记录每个用户的钻石数量,皮肤数量等等),问题来了订阅号是没有网页授权的,只有跟订阅号发生交互后才能获取到用户的信息也包括openid 阅读全文
摘要:
{{str_limit($product['goods_brief'],20,'....')}} 阅读全文
摘要:
原创:微信小程序调用【统一下单】、【支付】、【支付回调】api并处理请求 https://www.cnblogs.com/xuzhengzong/p/7061141.html 阅读全文
摘要:
use Illuminate\Pagination\LengthAwarePaginator;use Illuminate\Pagination\Paginator; $perPage = 10; //每页显示数量if ($request->has('page')) { $current_page 阅读全文
摘要:
laraval 从数据库读取出来的是对象,很麻烦,转化为数组,个人认为最佳方案 废话少说,看代码 控制器层 模板层 阅读全文