- 博客(11)
- 收藏
- 关注
原创 【从零开始的Robert Framework01】前期碎碎念
故想到了借助科技的力量--问了ChatGPT,告诉我Robert Framework这框架很牛逼。于是决定学起来,技多不压身。业务逻辑复杂,业务粘连性高。在没有自动化的前提下,改BUG基本上是“这里按下去了,那边翘起来了。客户方argue我们,是否有质量监控的策略。业务流程又臭又长,完整走一遍下来耗时太长。
2023-03-14 22:08:22 143
原创 【SwiftUI】深色模式适配
2.通过三元表达式获取目前系统的模式(深色、浅色),通过不同的模式选取返回不同的颜色。1.在header的struct View中引入EnvironmentObject。设备浅色模式时,用户名的color为蓝色,设备深色模式时,用户名的color为白色。
2022-11-28 19:46:01 967
原创 【SwiftUI学习笔记】 objectWillChange.send()手动触发视图view更新
在主视图view的refreshable闭包中调用viewmodel中定义的refreshData方法。在ViewModel的相关层里定义触发方法(这里以主视图下拉刷新后触发值更改)在viewModel层的相关类里定义变量。在主视图中实例化上述viewModel。
2022-11-28 19:33:53 771
原创 【SwiftUI学习笔记】@propertyWrapper、Bind<String>实战
【代码】【SwiftUI学习笔记】@propertyWrapper、Bind实战。
2022-11-28 19:06:57 650
原创 【SwiftUI学习笔记】Git Repository Creation FailedEnsure the author information supplied in Xcode ...
1.创建storyboard,点击Next后弹出错误。Git Repository Creation FailedEnsure the author information supplied in Xcode > Preferences is correct then create the git repository using Source Control > New Git Repository…
2022-11-28 18:31:27 2376 1
转载 【阿里云学习笔记】快速搭建网站
在ECS服务器上,执行以下命令安装Apache及其扩展包,run命令报错如下两个原因:1、因为进入ESC服务器后,远程locale与本地locale没有对应。解决方案:关于locale问题 warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory_Mark蜀黍的博客-CSDN博客2、进入之后报错,解决方案:......
2022-07-12 15:59:21 1119
原创 【React错误合集】Cannot create a project named “TodoList“ because of npm naming restrictions
输入命令npx create-react-app TodoList报错Cannot create a project named "TodoList" because of npm naming restrictions: * name can no longer contain capital lettersPlease choose a different project name.原因:脚手架项目名中不能含有大写字母...
2022-03-14 20:28:18 1009
原创 【React错误合集】Super expression must either be null or a function, not undefined
报错TypeError: Super expression must either be null or a function, not undefined原因 class Person extends React.Component{ state={person:[ {id:1,name:'小张',age:18}, {id:2,name:'小李',age:19} ] }..
2022-03-13 20:16:46 2085
原创 MacOS nodejs 安装 node-sass 报错 error: no template named ‘remove_cv_t‘ in namespace ‘std‘的解决方案
报错信息error: no template named 'remove_cv_t' in namespace 'std'; did you mean 'remove_cv'?解决方案去对应的路径下面,打开v8-internal.h这个文件,根据错误提示信息,修改文件内对应代码行(例:本文为563行)内remove_cv_t为remove_cv...
2021-12-13 12:19:43 1584
原创 Cypress设置chrome浏览器运行自启动开发者工具
在plugins-》index.js文件末尾加上这一块代码module.exports = (on, config) => { on('before:browser:launch', (browser = {}, launchOptions) => { // `args` is an array of all the arguments that will // be passed to browsers when it launches consol.
2021-12-08 18:29:35 730
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人