如果您有项目需要开发,可以联系我们

果果开发
this exceeds GitHub’s file size limit of 100.00 MB
this exceeds GitHub’s file size limit of 100.00 MB

上传代码到GitHub报错: remote: error: File taiguo/hcsasia/thb/system/service_center/error_log is 511.29 MB; this exceeds GitHub’…

1年前

请检查模板内容与模板参数是否匹配
请检查模板内容与模板参数是否匹配

阿里云短信发送失败,报错信息为:请检查模板内容与模板参数是否匹配。 找了半天,最后发现是传递的参数错误。 文档中写的参数都是大写字母开头,实际使用中却是小写字母开头。 实际调用代码是小写字母开头

1年前

致命错误: Class ‘Zxing\Qrcode\Decoder\Decoder’ not found
致命错误: Class ‘Zxing\Qrcode\Decoder\Decoder’ not found

二维码解析扩展库报错: 致命错误: Class ‘Zxing\Qrcode\Decoder\Decoder’ not found 这个库在Windows上不会出问题,一旦用Linux服务器就会报错,原因在于Linux服务器区分大小写,导致对…

1年前

fastadmin在列表顶部添加自定义按钮
fastadmin在列表顶部添加自定义按钮

例如:在列表顶部添加自定义按钮,并实现点击按钮后,请求后端接口,然后返回数据,最后刷新表格数据。 控制器代码:application/admin/controller/Domain.php public function check() {…

1年前

使用JavaScript在新窗口打开链接
使用JavaScript在新窗口打开链接

有时候,需要使用JavaScript代码来实现在新窗口中打开链接,具体代码如下: let id = ‘buy_url_id’; let a = document.createElement(“a”); a.setAttribute(“hre…

1年前

fastadmin在列表页上方添加自定义按钮
fastadmin在列表页上方添加自定义按钮

实现效果: 修改页面对应的index.html,添加以下代码 <a href=”{:url(‘exchange_code/convert’)}” class=”btn btn-success btn-convert btn-dialo…

1年前

composer指定php版本
composer指定php版本

使用composer安装扩展库时,遇到php cli(composer php)版本与项目的php版本不一致,导致扩展库无法安装。 可以在composer.json文件中定义以下配置,指定composer使用的php版本来解决这个问题。 “…

1年前

fastadmin菜单规则中添加请求参数
fastadmin菜单规则中添加请求参数

不同的菜单,但是用到了同一个数据库表,同一个控制器,同一个方法。简单来说,就是用2个菜单来展示不同状态的数据。 上面的设置有个问题就是生成链接的时候会出错,链接请求中会有2个?号,这样获取到的请求参数值将会是错误的。 目前的做法是,修改js…

1年前

thinkphp $this->success方法不跳转页面
thinkphp $this->success方法不跳转页面

使用fastadmin(thinkphp)在控制器中执行以下代码,但是前台页面并没有跳转 $this->success(‘注册成功’, url(‘index/login’), [‘url’ => url(‘index/login…

1年前

The server requested authentication method unknown to the client
The server requested authentication method unknown to the client

php连接MySQL8报错: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client 解决办法: 修改MySQL配置文件…

1年前