Where possible begins

希望你喜欢这里。有问题,请提问,或搜索现有帖子。

真诚、友善、团结、专业,共建你我引以为荣之社区。《常见问题解答》

子枫
子枫 [Rainy] 05-09 17:06

自动滚动到指定js

开发调优

自动滚动到指定js ``` $(function(){ var cid = {$cid}; if(cid==20){ $('html,body').animate({scrollTop:$('#ab01').offset().top}, 800); } if(cid==21){ $('html,body').animate({scrollTop:$('#ab02').offset().top}, 800); } if(cid==22){ $('html,body').animate({scrollTop:$('#ab03').offset().top}, 800); } if(cid==23){ $('html,body').animate({scrollTop:$('#ab04').offset().top}, 800); } if(cid==97){ $('html,body').animate({scrollTop:$('#ab05').offset().top}, 800);

185

子枫
子枫 [Rainy] 05-09 11:24

Tailwind CSS 组件库

讨论专区

免费 Tailwind CSS 组件库,可以免费复制代码,拿来就用。 特别适合不懂前端的后端开发。 https://tailsc.com/components/ ui.shadcn.com daisyui.com uicolors.app sailboatui.com preline.co tailbits.com tailwindtoolbox.com tailwindawesome.com merakiui.com flowbite.com langui.dev cruip.com tailspark.co tailsc.com

236

子枫
子枫 [Rainy] 04-22 14:10

mysql替换内容

讨论专区

替换内容 ``` UPDATE zf_category SET pic = REPLACE(pic, 'https://', 'http://') WHERE pic LIKE '%https://%'; ``` 链接中https替换成http

209

子枫
子枫 [Rainy] 04-22 10:48

zfcms模板开发demo

子枫cmsX2

theme_demo

217

子枫
子枫 [Rainy] 04-18 15:03

ZFCMS支付配置

子枫cmsX2

## 易支付: 推荐使用码支付: http://pay.jianshe2.com/

261

子枫
子枫 [Rainy] 04-17 13:31

mysqldump使用命令导入导出

开发调优

mysqldump导入导出 ## 导入 ``` mysql -h 127.0.0.1 -P 3307 -u root -p [数据库名] < [源文件名].sql 例如: mysql -h 127.0.0.1 -P 3307 -u root -p xinhua < db_xinhua.230601.sql 然后输入密码 ``` ## 导出 ``` mysqldump -h 127.0.0.1 -P 3307 -u [用户名] -p [数据库名] > [目标文件名].sql ```

204

子枫
子枫 [Rainy] 04-10 12:18

zfcms弹窗选择文件新增一种方式

子枫cmsX2

在版本v0.240410可用 ``` $('.up_img').on('click',function(){ var url = "{:url('common/Fileupload/upload')}?ttttt=1" var that = $(this) window.selectedPicInfo = null; layer.open({ type: 2, area: ['90%', '90%'], fixed: true, maxmin: true, content: url+"&cid=0&t=return_url&zf_class=", end: function(){ var selectedPicInfo = window.selectedPicInfo; if(selectedPicInfo){ that.parent().fi

190

子枫
子枫 [Rainy] 04-01 21:05

ZFCMS使用mysql5.7 groupby问题

子枫cmsX2

![](//storage-x1.90ckm.com/uploads/beb8b8cc89e739e44c1421a8a6c6b064/20240401_70521iShot_2024-04-01_20.19.46.png) 报错 ``` SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'devzfcmsx2local.zf_post.ctime' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by ``` ## 解决方案 直接运行下面的sql即可 ![](//storage-x1.90ckm.com/uploads/beb

200

子枫
子枫 [Rainy] 03-29 11:39

zfcms更新系统sql新增多种方式

子枫cmsX2

格式是一样的,只是调用方法不同 1.直接调用(不推荐使用) ``` 'v0.0.3'=>$this->v0_0_3(), ``` 2.方法(新增) 在文件/application/common/controller/updateSql.php中方法__construct新增 ``` 'v0.240315'=>['type'=>'function','name'=>'v0_240315'], ``` 然后写对应的方法 3.文件(新增)(推荐使用) ![](//storage-x1.90ckm.com/uploads/beb8b8cc89e739e44c1421a8a6c6b064/20240329_40288微信截图_20240329113141.png) 这种方式不需要调用,直接写文件即可

199

子枫
子枫 [Rainy] 03-28 14:21

ueditor简单的参数

讨论专区

``` 'fullscreen', 'source', '|', 'undo', 'redo', '|', 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|', 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|', 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|', 'directionalityltr', 'directionalityrtl', 'indent', '|'

170

子枫
子枫 [Rainy] 03-20 10:42

easywechat退款参考

开发调优

退款参考 ``` public function qx_order(){ $this->config = [ 'app_id' => 'wx6********9719', 'secret' => 'e2e3e**********0194ab3d6596fd', // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名 // 'response_type' => 'array', 'mch_id' => '151*********', 'key' => 'AAA66666666666666666666666666666', 'cert_path' => './cert/apiclient_cert.pem', // optional,退款等情况时用到 'key_path' => './cert/apiclient_key.pem',// optional,退款等情况时用到 // 'notify_u

203

子枫
子枫 [Rainy] 03-18 17:17

判断页面是否引入jq,如果没有则引入

开发调优

``` window.jQuery || document .write("<script src='/public/static/zfcms/style/jquery-1.8.3/jquery-1.8.3.min.js'>" + "<"+"/script>"); setTimeout(() => { if (typeof jQuery !== 'undefined') { console.log('jq已引用') } else { console.log('页面jQuery未引用,无法进行相关操作') } },100) ```

173

子枫
子枫 [Rainy] 03-18 11:25

小程序rich-text组件如何改变内部img图片样式的方法

开发调优

小程序rich-text组件如何改变内部img图片样式的方法 页面使用 ``` <rich-text nodes="{{content}}"></rich-text> ``` js获取后进行处理 ``` content = content.replace(/<p([\s\w"=\/\.:;]+)((?:(style="[^"]+")))/ig, '<p') .replace(/<p>/ig, '<p style="font-size: 15px; line-height: 25px;">') .replace(/<img([\s\w"-=\/\.:;]+)((?:(height="[^"]+")))/ig, '<img$1') .replace(/<img([\s\w"-=\/\.:;]+)((?:(width="[^"]+")))/ig, '<img$1') .replace(/<img([\s\w"-=\/\.:;]+)((?:(style="[^"]+")))/ig, '<img$1') .replace(/<img([\s\w"-=\/\.:;]

191

子枫
子枫 [Rainy] 03-16 15:09

推荐个好用的Tailwind库

讨论专区

https://www.hyperui.dev/

180

子枫
子枫 [Rainy] 03-14 15:31

分享-只有一个html文件的 ChatGPT 聊天网页

讨论专区

github地址是 https://github.com/lin2025/gpt3.5 真的只有一个文件 用的是vue ![](https://camo.githubusercontent.com/9068b7ddae9239c8108138decd31ab83fbc3e68b6fc1506233af387855186b71/68747470733a2f2f6c696e323032352e6769746875622e696f2f696d672f6f746865722d303730352e676966)

174