72 posts
#96
复制粘贴contentEditable="true"dom内容,其父元素需要设置宽高,否则不生效
#95
bug:Warning: React has detected a change in the order of Hooks called by ViewFlowModalWrap. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://reactjs.org/link/rules-of-hooks
Previous render Next render
- useMemo useState
......
使用map渲染使用了useMemo的函数时,由于map数组数量改变导致useMemo前后使用的数量不一致。
#91
商机:【程序员裸辞回村后又遇到了新的机会,兄弟们要重新开始写代码吗?-哔哩哔哩】 https://b23.tv/Bbvt6tB
进入相应行业,发现行业中重复性强可用互联网代替的工作,用程序解决。
关键:下沉到行业中,了解痛点。
#87
敏感字段接口排查:封装axios,请求时获取信息,上报指定接口(@openreplay/tracker
)
#84
Android layout 背景图片不显示的奇怪问题
未解决:[Android 背景图片样式渲染异常问题]
#75
- 安装drony
- 无法解密:将证书用指定的名称放到指定的位置(/system/etc/security/cacerts/)[需root]
#73
返回JSON字符串数据格式踩坑记录:
function formatMessage(str){
try {
str= JSON.parse(str);
} catch {
str = str || ""
}
}