2021年1月25日
在深入了解 React 之前了解有关 JavaScript 和 Web 开发的所有信息。不幸的是, 我们生活在一个不完美的世界里, 所以在 React 之前对所有 JavaScript 进行大做笑只会让你流血。如果您已经拥有了一些 JavaScript 的经验,那么在 React 之前,您需要学习的只是用于开发 React 应用程序的 JavaScript 功能。关于JavaScript,在学习React之前,你应该对它感到……
阅读全文
2021年1月25日
这一次,我们将讨论模式、模式和模式。Context``````Presentational and Container Components``````Compound Components 上下文 根据React文档: 上下文提供了一种通过组件树传递数据的方法,而无需在每个级别手动传递道具。 简单地说,如果您有一个需要通过多个组件级别的全局状态,可以使用 。例如:如果您有一个会……
阅读全文
2021年1月25日
**注:**有些模式侧重于状态管理概念,但我们可以避免和其他第三方状态管理工具,因为它们与本文的主题无关。Redux,``````Mobx 渲染道具 响应文档比比皆是: 术语"呈现道具"是指使用其值为函数的 prop 在 React 组件之间共享代码的技术。 简单地说,它只是一个函数值的道……
阅读全文
2021年1月20日
解决方法:添加私钥 步骤: 切换到文件夹 1 cd ~/.ssh 添加秘钥 1 ssh-add id_rsa 查看秘钥 ssh-add -l 测试github仓库连接 git ls-remote -h -- git@github.com:zhangjk4859/jenkins-build-iOS.git 完。 参考:https://superuser.com/questions/988185/how-to-avoid-being-asked-enter-passphrase-for……
阅读全文
2021年1月20日
安装 brew install jenkins-lts 启动 1 brew services start jenkins-lts 停止 1 brew services stop jenkins-lts 重启 1 brew services restart jenkins-lts 更新 1 brew upgrade jenkins-lts 局域网访问配置 homebrew.mxcl.jenkins.plist里面httpListenAddress从127.0.0.1更改为0.0.0.0 两个地方 ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist /usr/local/Cellar/jenkins/版本号/……
阅读全文
2021年1月10日
在当今具有高度颠覆性且达尔文式移动应用开发世界中,企业不会冒险错过在两个平台上的存在:谷歌Play商店或苹果应用商店。 但是,如果企业使用本机应用,预算通常是个问题。这就是为什么跨平台应用程序开发已成为无与伦比的企业选择,旨在出现在Android以及iOS。 在继续了解 2021 年这一类框架……
阅读全文
2021年1月7日
问题:libstdc++ not found 原因:libstdc++ was deprecated 5 years ago,we should update project to use libc++ 解决:更新工程或者下载库到当前工程,下载地址 https://github.com/zhangjk4859/zhangjk4859.github.io/raw/zjk/files/libstdc--master.zip 下载完成以后执行对应.sh文件即可 参考:1.https://github.com/devdawei/libstdc- 2.https://www.jianshu.com/p/e694782b8740……
阅读全文
2021年1月7日
问题:启动app会白屏很长一段时间,即使是一个全新的app 解决方案: In the Xcode menu,go to product > scheme > edit scheme open the info tab Uncheck the debug executables checkbox 参考:1. https://stackoverflow.com/questions/63929122/slow-app-launch-time-after-updating-to-ios-14-and-xcode-12 2.https://developer.apple.com/forums/thread/651012……
阅读全文
2021年1月7日
原理:原生的dictionary加朗文的词库,词库需要转换,转换过程见参考链接2 参考:1. https://www.zhihu.com/question/21964466 https://kaihao.io/2018/mdict-to-macos-dictionary/ 3.https://www.zhihu.com/question/20428599/answer/223511099……
阅读全文
2021年1月6日
链表了解吗 Linked list is a sequence of links which contains items Link - Each link of a linked list can store a data called an element Next - Each link of a linked list contains a link to the next link called Next LinkedList - A Linked List contains the connection link to the first link called First Linked list can be visualized as a chain of nodes,where every node points to hte next node ![image]( Simple linked list -item navigation is forward only doubly linked list - items can be navigated forward and backward circular linked list - last item contains link of the first element as next and the first element has a link to the last element as previous. 双向链表是什么 同上,节点有前……
阅读全文