react
仙鹤小米粥
这个作者很懒,什么都没留下…
展开
-
sourcetree clone很大的项目
报错如下:error: xxx bytes of body are still expectedfetch-pack: unexpected disconnect while reading sideband packetfatal: early EOFfatal: fetch-pack: invalid index-pack output网上很对于这个问题的相同解决方法第一句话我遇到个问题,没有用-b参数,clone了默认的master分支,后面的没反应,后设置-b 为最新提交的一个分支名称,重新执原创 2022-07-06 15:37:17 · 1157 阅读 · 0 评论 -
fetch返回readbleStream处理
fetch请求返回后,respose.body是readableStream类型数据,可以通过response.headers的contentType判断类型1.application/csv(文件类型)response.blob().then(blob => download(blob))function download(blob, filename) { const url = window.URL.createObjectURL(blob); const a = docu原创 2021-11-11 16:16:01 · 2368 阅读 · 0 评论 -
react通过svg显示图标,自定义颜色
https://reactsvgicons.com/这个网站有些可以用的svg,通过组件的形式在react中使用,import * as React from "react";function ShareIcon(props) { return ( <svg viewBox="0 0 512 512" fill="currentColor" height="1em" width="1em" {...props} .原创 2021-09-04 09:07:00 · 1248 阅读 · 0 评论 -
react native 0.54.4 升级 0.57.8
替换libst 6.0.9rn库修改 ,12,react-native/React/Base/RCTModuleMethod.mm修改这个方法添加一行static BOOL RCTParseUnused(const char **input){ return RCTReadString(input, "__unused") || RCTReadString(input, "__attribute__((__unused__))") || ...原创 2020-07-20 14:26:44 · 333 阅读 · 0 评论 -
antd pro 升级 antd4.0
"ant-design-pro"的项目,版本是2.1.1 ,由于4.0pro页面结构大变,不可能完全删除弃用的icon,反正我不会改了开始升级,第一步修改以下依赖"dependencies": { "@ant-design/compatible": "^1.0.2", //兼容3.0,form和icon组件 "antd": "^4.0.0", "reac...原创 2020-05-07 15:34:42 · 4423 阅读 · 0 评论 -
codepush使用记录
1/显示最新的热更新包 code-push deployment ls 包名2/清空所有热更细胞 code-push deployment clear 包名 Production (如果2个key切换的话,切换成的key,必须最少有一个发布的热更新包)3/...原创 2018-07-25 14:06:15 · 340 阅读 · 0 评论 -
taro + dva
cnpm install -g @tarojs/clicnpm install --save redux @tarojs/redux @tarojs/redux-h5 redux-thunk redux-loggercnpm install --save dva-core dva-loadingcnpm i --save @tarojs/async-awaittaro init 'n...原创 2019-08-19 13:26:55 · 485 阅读 · 0 评论 -
typescript+ create-react-app +less
1.新建项目 集成typescript yarn create react-app antd-demo-ts --typescript2.安装ant-mobile npm install antd-mobile --save3.引入react-app-rewired并修改 package.json 里的启动配置。。由于新的react-ap...原创 2019-08-28 11:22:34 · 352 阅读 · 0 评论