Today’s Task
- Property Page
- Fix Issues after review
Additional Task
Thought
1
竟有如此离谱
JB 的 Ktor Http Api 示例代码,在家跑能起来
但跑测试的表现是请求 8080 端口 404
同一份代码直接 clone 下来在办公室机器上就通了……
回去看看这个端口开了没,是不是被占用了
2
说起来经常会有 8080 被占用,但 idea 上跑着的所有项目都停掉了
1 | netstat -ano | grep :8080 |
win 下可以用:
1 | taskkill /PID ${PID of process using 8080} /F |
Code Review:
1. 为啥我老是喜欢用 forEach 捏
哦拜托这样真的超罗嗦的
forEach() 返回的是 undefined,map 至少会给个数组
所以这里在 forEach() 里面试图塞进数组的行为显得相当机车
而且这里 properties 永远不会 === null,它是初值个 {} ,而 {} != {} 且 {} !== {}
1 | renderOptions(properties: {[key: string]: string}) { |
Emmmm that looks better
1 | renderOptions(properties: {[key: string]: string}) { |
2. map 到底返回了个啥?
1 | let tableItem: JSX.Element[] = []; |
map 本身返回的就是个数组,就不用再特地开个新的去存进去
1 | { |
3. 展开运算符
1 | let history = this.state.searchHistory; |
1 | let history = { [property]: this.state.property }; |