
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 · 1107 阅读 · 1 评论 -
React 中保存页面状态,在react中实现vue的keep-alive,React Activation
今天有个业务需求,在列表页筛选查询条件后,进入详情页,返回列表页时,筛选条件还存在。 选中了React Activation插件,使用如下: 这是参考文档:react-activation/README_CN.md at d08219cba1fd3bc2ddd18b382eac656f1826d65d · CJY0208/react-activation · GitHub 1、安装 yarn add react-activation 2、在App.js页面引入AliveScope impor原创 2021-08-09 11:32:59 · 1823 阅读 · 0 评论 -
create-react-app创建项目报错
create-react-app my-app创建项目时报如下错误 C:\kc\hb\react>npx create-react-app my-app npx: installed 98 in 7.775s Creating 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 · 1348 阅读 · 0 评论 -
React实现轮播组件
一个简单的demo,react写轮播组件 1、SwipePlayer.js import React from 'react'; import './demo.css' class SwipePlayer extends React.Component { constructor(props) { super(props) this.state = { ind...原创 2020-04-13 14:17:19 · 1849 阅读 · 0 评论