
react
LLL_LH
记录一些学习心得
展开
-
antd-pro的table搜索表格标签没显示完全
<ProTable columns={columns} dataSource={dataSource} rowKey="key" search={{ span: 6, autoComplete: "off", labelWidth: 100 }} dateFormatter="string" />设置labelWidth..原创 2021-11-03 14:50:33 · 1077 阅读 · 1 评论 -
React 中保存页面状态,在react中实现vue的keep-alive,React Activation
今天有个业务需求,在列表页筛选查询条件后,进入详情页,返回列表页时,筛选条件还存在。选中了React Activation插件,使用如下:这是参考文档:react-activation/README_CN.md at d08219cba1fd3bc2ddd18b382eac656f1826d65d · CJY0208/react-activation · GitHub1、安装yarn add react-activation2、在App.js页面引入AliveScopeimpor原创 2021-08-09 11:32:59 · 1804 阅读 · 0 评论 -
create-react-app创建项目报错
create-react-app my-app创建项目时报如下错误C:\kc\hb\react>npx create-react-app my-appnpx: installed 98 in 7.775sCreating a new React app in C:\kc\hb\react\my-app.Installing packages. This might take a couple of minutes.Installing react, react-dom, and rea原创 2020-07-14 11:18:39 · 1322 阅读 · 0 评论 -
React实现轮播组件
一个简单的demo,react写轮播组件1、SwipePlayer.jsimport React from 'react';import './demo.css'class SwipePlayer extends React.Component { constructor(props) { super(props) this.state = { ind...原创 2020-04-13 14:17:19 · 1836 阅读 · 0 评论