上一页 1 2 3 4 5 6 7 8 ··· 26 下一页
前言:最近用到了新工具knex——nodejs连接数据库,感觉很不错的库,记录一下使用过程。 一、介绍 英文版文档:https://knexjs.org/guide/ 中文版文档:https://knex.nodejs.cn/guide/ 二、配置 import dotenv from 'doten Read More
posted @ 2023-12-22 08:56 走走停停走走 Views(230) Comments(0) Diggs(0) Edit
前言:最新要基于nodejs写rpc接口,顺带熟悉一些koa框架的router功能。 一、搭建框架 koa官方文档: https://koa.nodejs.cn/ (2.14) 使用教程 get示例: https://chenshenhai.github.io/koa2-note/note/rout Read More
posted @ 2023-12-21 12:00 走走停停走走 Views(565) Comments(0) Diggs(0) Edit
问题一、一个select能联动另一个select 解决办法:使用renderFormItem把页面渲染出来,这样就可以自定义属性和方法了。比如select的onSelect,value,options等。 // 部门project列表,从服务端获取 const [deptProjListFromSe Read More
posted @ 2023-09-27 20:25 走走停停走走 Views(669) Comments(0) Diggs(0) Edit
前言:flex是跟神奇的东西,每过一段时间都跟重来没学过一样,始终没有能够随时用起来,在此记录,方便以后查询。 一、父元素 flex-direction:子元素排列。row左起行排列,column上起竖排列。加reverse就是右起,下起。 row(默认值):主轴为水平方向,起点在左端。 row-r Read More
posted @ 2023-08-23 17:30 走走停停走走 Views(23) Comments(0) Diggs(0) Edit
前言:这个问题卡住好久。全是红色波浪线,代码没法看。 第一步: "compilerOptions": { "moduleResolution": "node", "jsx": "react"}, 解决办法:https://stackoverflow.com/questions/40899868/ty Read More
posted @ 2023-07-11 22:07 走走停停走走 Views(109) Comments(0) Diggs(0) Edit
前言: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
posted @ 2023-07-06 11:37 走走停停走走 Views(203) Comments(0) Diggs(0) Edit
前言:学习typescript时,总要去查一些资料,所以收集整理到此,方便以后学习。 https://ts.xcatliu.com/advanced/generics.html Read More
posted @ 2023-07-03 17:57 走走停停走走 Views(109) Comments(0) Diggs(0) Edit
前言:新建一个前端工程,有好多知识点需要学习。查资料的知识点如下 3,Pro-Layout如何添加 (1)配置路由菜单 https://juejin.cn/post/7074565988284366879 (2)页面布局 (3) 2,组件库@ant-design/pro-components学习 i Read More
posted @ 2023-07-03 17:51 走走停停走走 Views(82) Comments(0) Diggs(0) Edit
前言:eggjs连接MySQL数据库,我摸索了各种方式。下面这篇文章能正确链上。 增删查改SQL语法如下: 'use strict'; const Controller = require('egg').Controller; ​ class UserController extends Contr Read More
posted @ 2023-06-29 19:30 走走停停走走 Views(312) Comments(0) Diggs(0) Edit
命令: lsof -i:7001 kill 掉 Read More
posted @ 2023-06-29 18:26 走走停停走走 Views(9) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 ··· 26 下一页