【发布时间】:2019-08-06 08:54:49
【问题描述】:
我想迭代 TempTable 的 ResultSet。 例如:
MyTmpTable:
set emails = 'abc@xyz.com','qwe@xyz.com','asd@xyz.com';
for each mail in $(emails)
//Api call with Id https://myapiurl/$(mail)
next
这很好用。我们使用硬编码的电子邮件进行了测试
MyTmpTable:
Load emails from Employee;
for each mail in $(emails)
//Api call with Id https://myapiurl/$(mail)
next
但我们想使用动态电子邮件进行迭代。所以尝试了上面的代码,但它抛出 QVD UNEXPECTED END OF DATA 错误
再次尝试使用以下代码
MyTmpTable:
Load emails from Employee;
for each mail in FieldValueList('emails')
//Api call with Id https://myapiurl/$(mail)
next
此时间循环运行良好,但在 API 调用时出现相同的错误 QVD UNEXPECTED END OF DATA 错误
这个实现有什么问题?
【问题讨论】:
标签: qlikview qliksense qlik-expression