我还是个新手。我正在阅读“Google JS样式指南”。我想知道 - Documentation指的是什么?它开始于:
源文件按顺序包含:
- 许可或版权信息(如果有)
- @fileoverview JSDoc,如果存在
- goog.module statement
- goog.require statements
- 文件的实现
醇>
答案 0 :(得分:0)
/** * @fileoverview Description of file, its uses and information * about its dependencies. * @package */ goog.module('my.test.helpers'); goog.module.declareLegacyNamespace(); goog.setTestOnly(); const MyClass = goog.require('some.package.MyClass'); const NsMyClass = goog.require('other.ns.MyClass');
它基本上意味着上面的格式。我认为这个例子使用谷歌闭包库。
答案 1 :(得分:-1)
它们是包含JavaScript源代码的文件。
即。任何.js
个文件。