问题1:tsx文件找不到 根目录新建一个tsconfig.json { "compilerOptions": { "jsx": "react", "outDir": "./dist", "module": "es6", "target": "es5", "allowJs": true, "allow ...
分类:
其他好文 时间:
2021-04-07 11:32:12
阅读次数:
0
记录一个在React redux中使用Ts的例子: 项目地址:https://github.com/TYoul/react-redux-ts-count 注意点:由于在组件中直接使用useSelector会出现TS无法判断state的类型(具体可以看Count.tsx文件),所以在hooks.tsx ...
分类:
其他好文 时间:
2021-01-22 12:21:39
阅读次数:
0
使用crate-react-app创建的项目配置alias,这样之后在项目中直接可以使用别名来访问某个文件目录,从而快速引用某个文件,如使用这个命令创建的项目中,我们这 src/ 目录下创建一个 components/ 文件夹,如果想在项目中快速引用 components/Tab/index.tsx ...
分类:
移动开发 时间:
2021-01-06 12:02:03
阅读次数:
0
首先按照antd官网配置 index.tsx/index.jsx```import locale from 'antd/es/locale/zh_CN';import 'moment/locale/zh-cn';``````<ConfigProvider locale={locale}><App / ...
分类:
其他好文 时间:
2021-01-02 10:54:56
阅读次数:
0
tsx: import React, { useState } from 'react' import Taro from '@tarojs/taro' import { View, Text, Input } from '@tarojs/components' import './index.sc ...
分类:
移动开发 时间:
2020-11-12 14:22:14
阅读次数:
17
class Promise{ constructor(excutor){ this.value = ''; this.reason = ''; this.status = 'padding' this.onFulfilledCallback = [] this.onRejectedCallback ...
分类:
其他好文 时间:
2020-07-11 12:43:48
阅读次数:
52
mkdir stage && cd stage // 创建项目文件夹进入项目 npm init // 初始化依赖 npm install -S react react-dom // 安装react相关依赖 npm install -D webpack webpack-cli webpack-dev- ...
分类:
Web程序 时间:
2020-07-10 20:59:33
阅读次数:
66
react 嵌入 iframe 主要是为了隔离富文本,避免跟宿主环境的样式、变量等造成污染。 情况1:后端返回一个完整的网页,前端直接 `<iframe src="$url"></iframe>` 就可以了。 情况2:后端返回内容不可控 (比如以下例子)。 用法: index.tsx: export ...
分类:
其他好文 时间:
2020-07-06 16:07:23
阅读次数:
187
vscode 文件 ? 首选项 ? 用户代码片段 ? 新建全局代码片段 { "生成vue模板": { "prefix": "vue", "body": [ "<!-- tsx -->", "<template>", " <div class=\"package\">\n", " </div>", " ...
分类:
其他好文 时间:
2020-06-10 17:35:48
阅读次数:
66
要实现的效果如图,点击发送验证码,文字变为60秒后重新发送,并且开始倒计时 这是写成一个组件格式component -> eidtPass.tsx import React, { useState } from 'react' import { Modal, Form, Input, notific ...
分类:
其他好文 时间:
2020-06-09 16:28:10
阅读次数:
173