Alan.He
Alan.He
@its is commit message #number ## for example Commit message contains fixed #123 config is ``` "issueUrlFormat": "https://1991421.cn/browse/TTT-{{id}}" ``` will render ``` https://1991421.cn/browse/TTT-123" ```
1. add script package.json ``` "preinstall": "node ./scripts/checkYarn.js", ``` npm will auto-execute the script. 2. checkYarn.js ```js if (!/yarn\.js$/.test(process.env.npm_execpath || '')) { console.warn( '\u001b[33mThis repository requires Yarn 1.x for scripts...
I've been trying to package it into brew. but have encountered an error in actual testing that hasn't been resolved yet. The root cause of the following two errors is...
> Combining #110, #32, #82, & #84 to make it easier for people to track the resolution. > > As discussed in [#32 (comment)](https://github.com/microsoft/inshellisense/issues/32#issuecomment-1984759946), there isn't a feasible solution yet...
> 银行卡等问题如何处理 https://medium.com/@alanhe421/%E5%8A%A0%E5%85%A5medium-partner-program-10ba7e606f67?sk=6ee42d4570e747f2b00daa4141e6ae5e
其实还有一种情况:比如请求回复后立即页面刷新,也会呈现出`Chrome Failed to load response data`
> 解决方法:控制台里输入window.onbeforeunload = function(){debugger;},这样跳转页面前会卡住,这时去看response是可以看到的。 我试了下 并不可以,实际上还是太快了。当然timeout延迟下就可以看到了。
有些类型用范型去写,简洁不少。 比如 ```typescript Type Page={ data:T[], totalCount:number } ``` 范型即类型参数化。
最直接的区别,interface可以重复声明,而最终消费时,interface会类型合并,而Type不会。 具体实践,优先interface