会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
胸怀丶若谷
每一天都是在我身边的最后一天
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
16
17
18
19
20
21
22
23
24
···
45
下一页
2021年6月20日
Cannot use v-for on stateful component root element because it renders multiple elements.
摘要: <template name:trailerStars> <image v-for="yellow in yellowScore" src="../static/icos/star-yellow.png" class="star-ico"> </image> <image v-for="gray i
阅读全文
posted @ 2021-06-20 12:39 胸怀丶若谷
阅读(346)
评论(0)
推荐(0)
2021年6月18日
图标字体库
摘要: 为什么使用图标字体库: 在做ui设计的工作中,因为程序员的要求,所以接触到字体库。这里的字体库是指把一个项目要用到的图标做成svg格式,然后借助网站生成像字体一样可以直接改变大小和颜色的文件包。(ps: svg格式是矢量图,所以显示更清晰,但存在浏览器适配问题,png图片可能会糊,占存大) 因为字体
阅读全文
posted @ 2021-06-18 16:24 胸怀丶若谷
阅读(469)
评论(0)
推荐(0)
2021年6月17日
uni-app学习之路
摘要: MVC模式1. model:模型层,数据的增删改查2. view:视图层,前端页面3. controller:控制层,处理业务 文件页面结构1. 页面以`.vue`结尾2. `template`,`script`,`style`三个标签,一个页面只能存在一个3. 代码段分析如下所示: <script
阅读全文
posted @ 2021-06-17 13:47 胸怀丶若谷
阅读(126)
评论(0)
推荐(0)
2021年6月15日
自动刷新服务:nodemon
摘要: 安装命令: npm install -g nodemon 运行命令: nodemon server.js 运行结果:
阅读全文
posted @ 2021-06-15 09:42 胸怀丶若谷
阅读(65)
评论(0)
推荐(0)
2021年6月9日
PHP插件
摘要:
阅读全文
posted @ 2021-06-09 13:57 胸怀丶若谷
阅读(51)
评论(0)
推荐(0)
2021年6月8日
The language server needs at least PHP 7.1 installed. Version found: 7.0.10
摘要: 解决方案: 打开VS Code 文件 -> 首选项 -> 设置 -> 在 settings.json 中编辑 在 settings.json 中,加入: "php.executablePath": "E:/wamp64/bin/php/php7.0.10/php.exe", "php.validat
阅读全文
posted @ 2021-06-08 16:22 胸怀丶若谷
阅读(1662)
评论(0)
推荐(0)
jQuery插件
摘要: 依赖于jQuery的库,称为jQuery插件,其它的插件概念与之一致
阅读全文
posted @ 2021-06-08 15:19 胸怀丶若谷
阅读(61)
评论(0)
推荐(0)
Wampserver64 报错:无法启动此程序,因为计算机中丢失 MSVCR110.dll。尝试重新安装该程序以解决此问题。
摘要: 缺少环境配置, 程序下载地址如下: https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=30679 点击下载,下载完成后,双击程序安装即可。
阅读全文
posted @ 2021-06-08 14:43 胸怀丶若谷
阅读(249)
评论(0)
推荐(0)
2021年6月7日
return true 与 return false的妙用——jQuery
摘要: var arr = [1, 3, 5,7,9]; jQuery.each(arr, function(key, value){ if(key 2){ return true; } console.log(key,value); }) ; 上段代码等价于: var arr = [1, 3, 5,7,9
阅读全文
posted @ 2021-06-07 20:20 胸怀丶若谷
阅读(187)
评论(0)
推荐(0)
2021年6月6日
jQuery真伪数组转换
摘要: // 真数组转伪数组 [].push.apply(obj,arr); // 伪数组转真数组 [].slice.call(obj);
阅读全文
posted @ 2021-06-06 23:39 胸怀丶若谷
阅读(48)
评论(0)
推荐(0)
上一页
1
···
16
17
18
19
20
21
22
23
24
···
45
下一页
公告