前言:最近用到了新工具knex——nodejs连接数据库,感觉很不错的库,记录一下使用过程。 一、介绍 英文版文档:https://knexjs.org/guide/ 中文版文档:https://knex.nodejs.cn/guide/ 二、配置 import dotenv from 'doten Read More
前言:最新要基于nodejs写rpc接口,顺带熟悉一些koa框架的router功能。 一、搭建框架 koa官方文档: https://koa.nodejs.cn/ (2.14) 使用教程 get示例: https://chenshenhai.github.io/koa2-note/note/rout Read More
问题一、一个select能联动另一个select 解决办法:使用renderFormItem把页面渲染出来,这样就可以自定义属性和方法了。比如select的onSelect,value,options等。 // 部门project列表,从服务端获取 const [deptProjListFromSe Read More
前言:flex是跟神奇的东西,每过一段时间都跟重来没学过一样,始终没有能够随时用起来,在此记录,方便以后查询。 一、父元素 flex-direction:子元素排列。row左起行排列,column上起竖排列。加reverse就是右起,下起。 row(默认值):主轴为水平方向,起点在左端。 row-r Read More
前言:这个问题卡住好久。全是红色波浪线,代码没法看。 第一步: "compilerOptions": { "moduleResolution": "node", "jsx": "react"}, 解决办法:https://stackoverflow.com/questions/40899868/ty Read More
前言:umi+antd pro工程,创建后,使用起来的时候毛病多。 2,在webstorm编辑器报错 TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import Read More
前言:学习typescript时,总要去查一些资料,所以收集整理到此,方便以后学习。 https://ts.xcatliu.com/advanced/generics.html Read More
前言:新建一个前端工程,有好多知识点需要学习。查资料的知识点如下 3,Pro-Layout如何添加 (1)配置路由菜单 https://juejin.cn/post/7074565988284366879 (2)页面布局 (3) 2,组件库@ant-design/pro-components学习 i Read More