Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2019第3周 #13

Open
huruji opened this issue May 11, 2019 · 8 comments
Open

2019第3周 #13

huruji opened this issue May 11, 2019 · 8 comments

Comments

@huruji
Copy link
Owner

huruji commented May 11, 2019

https://jkchao.github.io/typescript-book-chinese/

深入理解 TS

TS 大法好

@huruji
Copy link
Owner Author

huruji commented May 16, 2019

const Url = require('url-parse')

exports.rulesServer = (server/* , options */) => {
server.on('request', (req, res) => {
const oReq = req.originalReq
const oRes = req.originalRes
const url = new Url(oReq.url, true)

if (!url.query.v) return

const queryObj = url.query.v.split('$').map(kv => kv.split('=')).reduce((map, kv) => {
  map[kv[0]] = kv[1]
  return map
}, {})

console.log(queryObj.target)



res.end(`${oReq.url} urlParams://(ptag=${queryObj.target})`);

});
};

@huruji
Copy link
Owner Author

huruji commented Jun 1, 2019

@huruji
Copy link
Owner Author

huruji commented Jun 11, 2019

https://tc39.es/

es 官方

@huruji
Copy link
Owner Author

huruji commented Jun 11, 2019

http://lynnelv.github.io/js-event-loop-nodejs

深入理解js事件循环机制(Node.js篇)

@huruji
Copy link
Owner Author

huruji commented Jun 11, 2019

https://stackoverflow.com/questions/44596937/chrome-memory-cache-vs-disk-cache

chrome 资源 network 面板中的 from disk cache 和 from memory cache

@huruji
Copy link
Owner Author

huruji commented Jun 13, 2019

https://www.jianshu.com/p/da8e9fba48b7

visibility :hidden和display:none的区别

@huruji
Copy link
Owner Author

huruji commented Jun 13, 2019

ES6 中 let 暂时性死区详解
https://segmentfault.com/a/1190000015603779

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant