摘要: <template> <view class="text-container"> 这是一段需要换行的文本,它会在容器的宽度限制下自动换行。 </view> </template> <style> .text-container { width: 200px; /* 设置容器宽度 */ white-s 阅读全文
posted @ 2024-08-28 14:51 zhang_you_wu 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 第一次使用electron时,用户需在win7上能安装exe应用打包后放到win7打开出现‘无去定位程序输从点 GetPackagefamnilName 动态链接库KERNEL32.dll’最终发现是electron版本太高,无法在win7上运行最终降低版本 electron :11.5.0 降低版 阅读全文
posted @ 2024-08-26 17:30 zhang_you_wu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <?php // 今日起止时间 $beginToday = mktime(0,0,0,date('m'),date('d'),date('y')); $now = time(); //昨天起至时间 $beginYesterday = mktime(0,0,0,date('m'),date('d')- 阅读全文
posted @ 2024-08-22 16:05 zhang_you_wu 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 我在uniapp引入uview2时,遇到下面报错 在uni.scss /*颜色变量*/下面添加如下代码 在main.js中添加如下代码 import uView from '@/uni_modules/uview-ui' Vue.use(uView) 阅读全文
posted @ 2024-08-14 16:50 zhang_you_wu 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 安装指令 composer require phpoffice/phpword 基本设置 /** * // 设置常用文本样式 * 'size' => 12, // 文字大小 * 'name' => '宋体', // 字体名称 * 'bold' => true, // 加粗 * 'italic' => 阅读全文
posted @ 2024-08-09 15:04 zhang_you_wu 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com/contact/#!/topic/SC1101/subtopic/30007/solution/CONTACT.CALL.C2C/details 阅读全文
posted @ 2024-07-03 10:34 zhang_you_wu 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.开通身份证识别 https://console.cloud.tencent.com/ocr/overview 2.费用查询 https://cloud.tencent.com/document/product/866/17619 3.获取SecretId 及 SecretKey 可前往 API密 阅读全文
posted @ 2024-06-24 16:57 zhang_you_wu 阅读(4) 评论(0) 推荐(0) 编辑
摘要: rray and string offset access syntax with curly braces is deprecated PHP7.4不再支持使用大括号访问数组以及字符串的偏移_PHP代码 php7.4不支持数组{}写法,统一为数组[] 解决办法: 数组{}写法,统一为数组[] $s 阅读全文
posted @ 2024-06-23 23:03 zhang_you_wu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 报错解释: 这个错误表明你试图重新声明函数 mb_str_split(),但这个函数名已经在你的代码或者被包含的文件中被使用。在PHP中,函数名是区分大小写的,所以 mb_str_split() 和 MB_str_split() 会被视为两个不同的函数。 解决方法: 将声明的 mb_str_spli 阅读全文
posted @ 2024-06-23 22:40 zhang_you_wu 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1、普通监听(无法监听到第一次绑定的变化) <input type="text" v-model="userName"/> //监听 当userName值发生变化时触发 watch: { userName (newName, oldName) { console.log(newName) } } 2 阅读全文
posted @ 2024-06-13 10:57 zhang_you_wu 阅读(15) 评论(0) 推荐(0) 编辑