摘要:
在谷歌67版本之前,用fetch发送请求的时候,浏览器不会自动携带cookie,需要多加一个配置项。 credentials: "include"如果cookie必须传值,但是你没有写这个配置项的话,会报一个跨域的错 阅读全文
摘要:
给select下拉框添加属性 dropdownRender={menu => ( <div> {menu} <div className="selectScroll" style={{ textAlign: 'center' }} onMouseDown={e => e.preventDefault 阅读全文
摘要:
下载文件,一般后台返回的是文件流。前台如果用的fetch的话,respose里面是空的,什么也看不到。用的axios的话,是一堆字符串形式的东西。 封装请求方法的时候,用 response.headers.get('Content-Type').includes('application/json' 阅读全文
摘要:
<div className={styles.content}> <Row> <Col id="left" style={{ position: 'absolute', height: '100%', width: `${this.state.width}px` }}> <div/> // 这里写内 阅读全文
摘要:
父组件: <Child onRef={(ref) => { this.child = ref; }} /> 用的时候直接从this.child里面取 子组件: componentDidMount() { this.props.onRef(this); } 阅读全文
摘要:
安装一个插件 npm i -D @babel/plugin-proposal-class-properties .babelrc或者options中配置 "plugins": [ "@babel/plugin-proposal-class-properties"] 阅读全文
摘要:
res = JSON.parse(result.replace(/\n/g,"\\n").replace(/\r/g,"\\r"));//转义str_o = res.result;str_n = str_o.replace(/\\n/g,"\r\n");//解析后再转回来 摘自:https://bl 阅读全文
摘要:
1、判断对象是否为空对象 (1) JSON.stringify(obj) '{}' (2) Object.keys(obj).length 2、删除对象的指定属性 const obj = { a: '1', b: '2', c: '3', d: '4', e: '5' }; (1) delete o 阅读全文
摘要:
给input设置的css属性: background 和 color ,都用rgba 比如 background: 'rgba(255,255,255,0.5)' color: 'rgba(255,255,255,1)' color: 'rgba(255,255,255,1)' 阅读全文
摘要:
给该标签加一个css样式 white-space: pre; 这种情况多出现在表格查询的时候,可以这么写(全局):td: { white-space: pre} td span: { white-space: pre} 其实直接把这个样式挂在到body上也可以解决,但是可能会影响其他样式(在我自己的 阅读全文