如何在 Coldfusion 线程中使用函数参数?我不明白为什么会出现以下错误:
元素 SOMEID 在 ARGUMENTS 中未定义。
我的代码的简化示例。
public any function createSomeEntity(required numeric someId) {
thread action="run" name="someThread" {
var result = someFunction(someId = arguments.someId);
// some logic
}
thread action="join" name="someThread" timeout="5000";
if (someThread.status != "COMPLETED") {
// action 1
} else {
// action 2
}
}