Questions tagged «notation»





4
Git忽略目录和directory / *有什么区别?
我对忽略git中目录内容的正确方法感到困惑。 假设我具有以下目录结构: my_project |--www |--1.txt |--2.txt |--.gitignore 放这之间有什么区别: www 还有这个? www/* 我问这个问题的原因是:在git中,如果目录为空,则git不会在存储库中包含此类空目录。所以我正在尝试的解决方案是在目录下添加一个额外的.gitkeep文件,这样它就不会为空。当我尝试该解决方案时,如果在.gitignore文件中,则编写如下: www !*.gitkeep 它不起作用(我的意图是忽略www下的所有内容,但保留目录)。但是,如果我尝试以下操作: www/* !*.gitkeep 然后就可以了!因此,我认为这两种方法之间必须有所区别。


7
用于记录JSON结构的语法
因此,我正在尝试记录我正在编写的api返回的json格式,我想知道json结构的文档是否存在任何流行的格式。 请注意,我并不是要测试或验证任何东西,我只是使用它作为文档。还有一些向非常量添加注释的方法(总是返回带有相同值的项目)会很好。 这是我目前不完全考虑的方案: Plain names refer to identifiers or types. Some types have type-comment Strings that appear to be constant(always returned for that type of request) strings are "str" Constant Numbers would be just the number Constant null is null Booleans are true/false for constant booleans or Boolean otherwise [a,b,c] …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.