我最近正在创建一个用户脚本,我注意到人们在用户脚本中对规则的排序有很大的不同。这真的重要吗?
执行以下操作:
// @name Hello, name here!
// @author Author is here!
// @description Description is here!
// @namespace Namespace is here!
字符串
与此不同的是:
// @namespace Namespace is here!
// @author Author is here!
// @description Description is here!
// @name Hello, name here!
型
所以我的问题是改变规则的顺序有关系吗?有什么不同吗?或者只是个人喜好的问题?
1条答案
按热度按时间8hhllhi21#
元数据块条目由用户脚本管理器在内部处理。
条目的顺序大多不重要,但也有一些例外:
@require
条目在FireMonkey中按顺序处理(在其他管理器中也是如此)就用户脚本本身而言,它们是JavaScript注解。
更多信息 (按字母顺序):