我有一个要在 dxl 中迭代的字符串列表。它们代表模块 ID,如下所示:
string limitModules[5] = ['1', '2', '3', '4', '5']
显然每个模块 ID 都比较复杂。我已经使用for type1 v1 in type2 v2 do
. 但是,当我运行脚本时,出现以下错误:
(do) 的参数不正确
这是我的循环:
string mod_name = ""
for mod_name in limitModules do {
// test to see if module is found
}
我错过了什么?