javascript 用户脚本中规则的顺序有什么不同吗?

ulydmbyx  于 2023-08-02  发布在  Java
关注(0)|答案(1)|浏览(95)

我最近正在创建一个用户脚本,我注意到人们在用户脚本中对规则的排序有很大的不同。这真的重要吗?
执行以下操作:

// @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!


所以我的问题是改变规则的顺序有关系吗?有什么不同吗?或者只是个人喜好的问题?

8hhllhi2

8hhllhi21#

元数据块条目由用户脚本管理器在内部处理。

条目的顺序大多不重要,但也有一些例外:

  • @require条目在FireMonkey中按顺序处理(在其他管理器中也是如此)

就用户脚本本身而言,它们是JavaScript注解。
更多信息 (按字母顺序)

相关问题