- ⌘(command) 命令去做,状态会发生改变
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Editor configuration, see http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// bo 解析 | |
const str = ` | |
/** description1 */ | |
valueName1?: string | |
/** description2 */ | |
valueName2: string | |
` | |
const reg = /\/\*\*((?:[^\?\:])+)\*\/\n([^\?\:]+)(?:\?)?\:/g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml client-log-scene | |
skinparam defaultFontName AR PL UKai CN | |
title 客户端异常场景 | |
start | |
:打开客户端; | |
if (出现异常?) then (yes) | |
:1、脚本运行异常 | |
2、接口请求异常(400/404... | |
3、界面显示有误; | |
end |