上一页 1 2 3 4 5 6 7 8 ··· 17 下一页

2020年12月11日

Flutter——数组以符号隔开转字符串

摘要: ///数组转字符串 String getTaskScreen(List list){ List tempList = List(); String str = ''; list.forEach((f){ tempList.add(f.title); }); tempList.forEach((f){ 阅读全文

posted @ 2020-12-11 15:07 在一起的浅蓝色 阅读(3807) 评论(0) 推荐(0) 编辑

2020年12月9日

Git——处理Warning: CocoaPods is installed but broken. Skipping pod install. You appear to have CocoaPods installed but it is not working.

摘要: Launching lib/main.dart on iPhone 11 Pro Max in debug mode... Warning: CocoaPods is installed but broken. Skipping pod install. You appear to have Coc 阅读全文

posted @ 2020-12-09 16:20 在一起的浅蓝色 阅读(2322) 评论(0) 推荐(0) 编辑

2020年12月7日

Git——error: RPC failed; curl 56 LibreSSL SSL_read:报错处理

摘要: 关键字: error: RPC failed;curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54 fatal: the remote end hung 试着在终端 ping 了一下 GitHub 的地址: ping github.com 推荐 阅读全文

posted @ 2020-12-07 23:27 在一起的浅蓝色 阅读(772) 评论(0) 推荐(0) 编辑

2020年12月4日

Git——To install: sudo gem install cocoapods 报错处理

摘要: 当前项目分支下,终端命令执行: $ cd ios/ $ pod install 阅读全文

posted @ 2020-12-04 14:16 在一起的浅蓝色 阅读(107) 评论(0) 推荐(0) 编辑

2020年11月30日

Xcode——清除缓存相关文件

摘要: https://www.jianshu.com/p/9c50c1e47f6d 在平时集成的Mac相关开发时间久了之后,就会遇到很多的缓存问题,比如:Xcode模拟器一直卡在启动页。 对于开发者来说,清清Xcode缓存,腾出几十G的空间还是有可能的。在升级Xcode适配新系统、新手机也是得给电脑减减压 阅读全文

posted @ 2020-11-30 16:38 在一起的浅蓝色 阅读(1589) 评论(0) 推荐(0) 编辑

2020年11月13日

vue —— 拉取远程仓库在本地开发

摘要: 拉取的前置任务在这里,就不一一熬述了 https://www.cnblogs.com/liuzhi20101016/p/13745405.html 1、克隆到本地桌面来之后,用VSCode打开,终端需要执行以下几步操作: 2、更新我们的项目 $ npm install 等到一顿加载之后,会提示加载成 阅读全文

posted @ 2020-11-13 16:10 在一起的浅蓝色 阅读(326) 评论(0) 推荐(0) 编辑

vue —— mac中配置Node、NPM环境

摘要: 使用Quasar CLI进行web端的开发 环境: Node NPM 确保在计算机上安装了Node> = 10和NPM> = 5 开发工具: VSCode 1.官网下载Node并安装 https://nodejs.org/en/ 推荐LTS版本,比较稳定,最新的Node自带NPM,无需再单独下载NP 阅读全文

posted @ 2020-11-13 15:46 在一起的浅蓝色 阅读(391) 评论(0) 推荐(0) 编辑

2020年11月10日

Flutter——常见报错处理

摘要: 1.RepositoryProvider.of() called with a context that does not contain a repository of type VideoCourseListNewRepository. No ancestor could be found st 阅读全文

posted @ 2020-11-10 11:09 在一起的浅蓝色 阅读(129) 评论(0) 推荐(0) 编辑

2020年10月27日

Git——从githup上克隆下一个完整的项目操作步骤

摘要: 很多同学在需要想要的demo时,都会在github上直接Download ZIP,但是有些并不是完整的 用终端命令工具执行,一般会比在github上Download ZIP完整 1.cd到你想要保存文件的目录。我是以Downloads为例 2.克隆你的目标github地址 3.克隆成功之后,cd到你 阅读全文

posted @ 2020-10-27 10:49 在一起的浅蓝色 阅读(174) 评论(0) 推荐(0) 编辑

2020年10月21日

Git——rebase实际操作遇到的问题

摘要: 当我们在自己的分支myDevelopBranch上开发完一个任务之后,需要合并到主分支上Develop上,可能会遇到这样的提示 这个时候就需要我们在终端命令工具中操作(这样是比较靠谱和安全的) git checkout develop git pull git checkout 你的 branch 阅读全文

posted @ 2020-10-21 18:23 在一起的浅蓝色 阅读(1135) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 17 下一页

导航