Documentation ¶
Overview ¶
包跟踪程序包含实际的javascript跟踪程序资产。
Index ¶
- func Asset(name string) ([]byte, error)
- func AssetDigest(name string) ([sha256.Size]byte, error)
- func AssetDir(name string) ([]string, error)
- func AssetInfo(name string) (os.FileInfo, error)
- func AssetNames() []string
- func AssetString(name string) (string, error)
- func Digests() (map[string][sha256.Size]byte, error)
- func MustAsset(name string) []byte
- func MustAssetString(name string) string
- func RestoreAsset(dir, name string) error
- func RestoreAssets(dir, name string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AssetDigest ¶
assetdigest返回具有给定名称的文件摘要。它返回一个 如果找不到资产或无法加载摘要,则出错。
func AssetDir ¶
assetdir返回某个 通过go bindata嵌入到文件中的目录。 例如,如果对数据/运行go bindata。数据包含 以下层次结构: 数据/ 英尺·txt IMG/ A.PNG B.PNG 然后assetdir(“data”)将返回[]字符串“foo.txt”,“img”, assetdir(“data/img”)将返回[]字符串“a.png”、“b.png”, assetdir(“foo.txt”)和assetdir(“notexist”)将返回错误,以及 assetdir(“”)将返回[]字符串“data”。
func AssetString ¶
asset string以字符串的形式返回资产内容(而不是以[]字节的形式)。
func MustAssetString ¶
mustassetstring就像assetstring,但当asset返回 错误。它简化了全局变量的安全初始化。
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.