Where possible begins

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

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

子枫
子枫 [Rainy] 03-14 11:50

分享给gpt提示词-用于截图生成前端代码

讨论专区

提示词如下 ``` You are an expert Tailwind developer You take screenshots of a reference web page from the user, and then build single page apps using Tailwind, HTML and JS. You might also be given a screenshot of a web page that you have already built, and asked to update it to look more like the reference image. - Make sure the app looks exactly like the screenshot. - Pay close attention to background color, text color, font size, font family, padding, margin, border, etc. Match the

204

子枫
子枫 [Rainy] 03-13 15:48

mysql格式化时间戳为时间

开发调优

DATE_FORMAT(FROM_UNIXTIME(ctime), "%Y-%m-%d %H:%i:%s") AS push_time ``` Db::name('aaaaa')->field('title,version,DATE_FORMAT(FROM_UNIXTIME(ctime), "%Y-%m-%d") AS push_time')->where([['post_id','=',$res['id']],['file','<>',''],['status','=',1]])->order('id desc')->limit(10)->select(); ```

173

子枫
子枫 [Rainy] 03-08 17:25

ZFCMS插件中的使用记录240308

子枫cmsX2

插件中的静态默认路径 : {$plug_static} 保存当前的链接: session('zf_login_tap_url',request()->url()); 获取插件保存在数据库中数据: $plugin_data = $this->Yun->get_plugin_config_db('addons','','zf_store_softclientv2'); 获取模板保存在数据库中数据: $theme_data = $this->Yun->get_plugin_config_db($this->zf_tpl_suffix,'theme','');

190

子枫
子枫 [Rainy] 03-08 09:51

子枫CMS内容模板使用form_time

子枫cmsX2

time_type可使用类型: year 年选择器,只提供年列表选择 month 年月选择器,只提供年、月选择 date 日期选择器(默认),可选择:年、月、日选择 time 时间选择器,只提供时、分、秒选择 datetime 日期时间选择器,可选择:年月日、时分秒 ![](//storage-x1.90ckm.com/uploads/beb8b8cc89e739e44c1421a8a6c6b064/20240308_196332.png)

173

子枫
子枫 [Rainy] 03-08 09:48

子枫CMS 内容模型使用select

子枫cmsX2

如果使用 ['上海','江苏','南京']这种形式的数据时,可以如下设置 ![](//storage-x1.90ckm.com/uploads/beb8b8cc89e739e44c1421a8a6c6b064/20240308_851711.png)

171

子枫
子枫 [Rainy] 03-07 14:29

分享个纯前端图片加水印

讨论专区

身份证加水印如何不想上传到第三方呢? 推荐这个 纯前端制作 http://watermark.dxcweb.com/

233

子枫
子枫 [Rainy] 03-05 14:42

PHP 根据日期获取节气

开发调优

有两种方式 第一种(不准确,会有误差) ``` function getJieQi($_year,$month,$day) { $year = substr($_year,-2)+0; $coefficient = array( array(5.4055,2019,-1),//小寒 array(20.12,2082,1),//大寒 array(3.87),//立春 array(18.74,2026,-1),//雨水 array(5.63),//惊蛰 array(20.646,2084,1),//春分 array(4.81),//清明 array(20.1),//谷雨 array(5.52,1911,1),//立夏

196

子枫
子枫 [Rainy] 03-02 17:50

子枫CMS系统升级240302

子枫cmsX2

``` - [x] 重写 authentication_sys.html页面 - [x] 删除一些不必要的静态文件 ```

184

子枫
子枫 [Rainy] 03-01 21:33

分享个出海指南(独立开发者版)

开发调优

https://github.com/weijunext/indie-hacker-tools

240

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

从今天开始子枫CMS将逐渐往AI方向靠拢

子枫cmsX2

从今天开始子枫CMS将逐渐往AI方向靠拢, 使用Gpt可生成修改代码,目的就是提高效率

173

子枫
子枫 [Rainy] 03-01 20:53

子枫CMS系统升级240301

子枫cmsX2

``` 03/01 (主要是为了减少代码的大小,减少不必要的代码) - [x] 增加一个在线引用样式包功能,如果没有本地没有则引用 (未完成) common.php config/index.html - [x] 后台下载对应的样式包 config/tool.html config.php - [x] 修复meta_url_route方法的中url等于空的bug common.php - [x] 由于多语言原因修改如下函数 route_home meta_url_route - [x] 更新/public/static/zfcms/style 下的静态文件,把大的文件删除,后续可在后台下载(节省12.23MB) 删除autosize wangEditor tinymce515 webuploader meditor - [x] 删除/public/static/zfcms/system 部分文件 空间节省5.34MB - [x] 删除/public/static/zfcms/lay

182

子枫
子枫 [Rainy] 02-21 13:27

子枫CMS中插件addons的升级文件使用说明

子枫cmsX2

目录addons/插件名/controller/Updatesql.php 以下使用一个新增表的参考仅供参考 ``` <?php namespace addons\插件名\controller; use think\addons\Controller as Bas; use think\Controller; class Updatesql extends Controller { public function __construct (){ parent::__construct(); $this->tb_prefix = config()['database']['prefix']; $this->site_version = strtolower(config()['version']['version']); $this->version_arr = [ 'v0.1'=>$this->v0_1(), ]; }

195

子枫
子枫 [Rainy] 02-21 13:24

yun.php新增检测模板中的升级文件功能

子枫cmsX2

新增时间20240221 模板中的使用方法 controller/Updatesql.php ``` <?php namespace 模板名\Controller; use think\Controller; use think\facade\Request; use think\Db; class Updatesql extends Controller { public function __construct () { parent::__construct(); $this->tb_prefix = config()['database']['prefix']; $this->site_version = strtolower(config()['version']['version']); $this->version_arr = [ 'v0.1'=>$this->v0_1(), ]; }

144

子枫
子枫 [Rainy] 02-21 10:18

jq中的next()和nextAll

开发调优

next() 获取的是同级下下一个元素 nextAll()获取下级下所有的,可搜索 ``` $(this).nextAll('.pic_tt').css('display','inline-block'); $(this).nextAll('.loading').hide() ```

161

子枫
子枫 [Rainy] 02-21 09:44

span内容区是中文的地方可以换行,如果连续一大段的英文或者是数字,都不换行,只有在中文汉字的地方才会换行

开发调优

解决方式: 1.style=“display:inline-block;width:60%;word-wrap:break-word;white-space:normal;” 是因为 span 不是块状元素。本身自带有 左浮动的效果,并且连续的英文字母跟数字是没办法自动换行的,必须要强制换行。 但是光用word-wrap:break-word; 是不行的。所以必须要在限制了宽度的情况下 还要增加 white-space:normal 2.将span属性加上display:block设置为行级元素;设置宽度然后在强制断行

177