指定 Composer Business Network 中脚本的加载顺序

Specify the loading sequence of the scripts in a Composer Business Network

我可以指定有依赖关系的脚本的顺序吗?我构建以下示例来说明我的问题。

lib/script0.js:

Settings = {
  hello: "hello 2 "
}

lib/script1.js:

helloText = Settings.hello

我在 composer playground 中测试了上面的示例。使用默认顺序,script1.js 在 script0.js 之前加载并导致“ReferenceError:未定义设置”。我可以指定加载到交易函数中的脚本的顺序吗?

目前不支持控制脚本的加载顺序。我建议不要在脚本中使用全局对象(因为上下文可能会被回收)。

你想达到什么目的?