摘要:
前端 UI 组件库是一套丰富、易用、高可扩展的。主要用于帮助前端工程师、后台工程师快速搭建 网站中后台产品,同时也帮助产品设计人员搭建逻辑清晰、结构合理且高效易用的产品。它分为基础组件、表单组件、视图组件、导航组件、高级组件及其他类组件,满足了产品设计、页面开发所需的绝大部分组件,并且很多组件都来源 阅读全文
随笔档案-2021年06月
容错性测试的测试点
2021-06-29 15:35 by Tanwheey, 1383 阅读, 收藏, 编辑
摘要:
在软件测试过程中,经常会遇到一些异常的场景,我们需要检测软件是否能正确处理,不出现崩溃、闪退等严重情况。而这些场景在正常的测试中较少遇到,因此需要模拟这些场景,以确保软件在异常条件下自身具有防护性的措施或者某种灾难性恢复的手段。所做的这些测试,就是容错性测试!容错性测试,简单概括就是对于各种异常输入 阅读全文
设置a标签,实现点击跳转页面
2021-06-28 11:30 by Tanwheey, 1042 阅读, 收藏, 编辑
摘要:
设置a标签的属性target,下面对target属性进行描述: 跳转在同一个窗口 1、target="_self", 它使得目标文档载入并显示在相同的框架或者窗口中作为源文档。(此处就是实现你的每次跳转都在同一个窗口的核心点) 跳转在新的窗口 2、target="_blank" ,浏览器总在一个新打 阅读全文
bower retry Request to xxx failed with ECONNRESET以及bower ECONNRESET Request to xxx failed: read ECONNRESET问题解决
2021-06-17 11:49 by Tanwheey, 577 阅读, 收藏, 编辑
摘要:
报错: bower retry Request to https://registry.bower.io/packages/oboe failed with ECONNRESET, retrying in 17.3sbower ECONNRESET Request to https://regist 阅读全文
MAC提示Operation not permitted
2021-06-09 12:50 by Tanwheey, 4182 阅读, 收藏, 编辑
摘要:
THMAC-xxxx:~ root# chmod 777 /Users/xxx/Documents/chmod: Unable to change file mode on /Users/xxx/Documents/: Operation not permitted 苹果在 OS X El Capi 阅读全文
npm ERR! Failed at the bufferutil@1.3.0 install script 问题解决方法
2021-06-09 10:17 by Tanwheey, 1220 阅读, 收藏, 编辑
摘要:
报错: npm ERR! Failed at the bufferutil@1.3.0 install script. npm ERR! This is probably not a problem with npm. There is likely additional logging outpu 阅读全文
git本地仓库和远程仓库关联
2021-06-09 10:01 by Tanwheey, 3378 阅读, 收藏, 编辑
摘要:
1、创建远程仓库 2、初始化本地仓库git init git add . git commit -m "desc" 3、关联远程仓库 git remote add origin https://github.com/fatedier/frp.git 4、第一次先拉取远程库中的README.md和.g 阅读全文
gitbook mermaid不能渲染问题
2021-06-08 15:47 by Tanwheey, 715 阅读, 收藏, 编辑
摘要:
本地搭建了gitbook,但是报错 Error: Cannot find module 'prismjs/components/prism-mermaid.js' 在启动的gitbook文件夹中编写book.js安装mermaid插件, 添加:"plugins": ["mermaid-gb3"] 执 阅读全文
adb命令启动app及查找系统版本号
2021-06-07 13:20 by Tanwheey, 1632 阅读, 收藏, 编辑
摘要:
以查找com.web.app为例。 获取应用的包名/activity名称: 1)打开应用 2)输入命令adb shell dumpsys activity activities affinity=com.web.app intent={act=android.intent.action.MAIN c 阅读全文
excle转html方法
2021-06-03 16:04 by Tanwheey, 196 阅读, 收藏, 编辑
摘要:
1、excle软件中选择文件,点击文件->另存为...->编写好文件名称后,文件格式选择:网页(.htm)。 2、使用浏览器打开这个网页文件,调出控制台,进入Elements,选择表格html代码,copy即可。 阅读全文
gitbook插入视频
2021-06-03 15:58 by Tanwheey, 877 阅读, 收藏, 编辑
摘要:
Video Player for GitBook要求: gitbook >=2.0.0 安装 在book.json中添加,具体位置:/yourPath/.gitbook/versions/yourVersion/ 添加: { "plugins": ['video-player'] } 然后执行 gi 阅读全文