此错误是什么意思?- "尝试对变量执行数组操作,而不是 DIM'd。



在解析一些JSON时,我遇到了这个错误。 body是一个关联数组。调试器在此行停止。

itemTitle = body["title"]

整个错误消息是

Array operation attempted on variable not DIM'd. (runtime error &he7) in $LIVECOMPILE(4)

当您尝试对字符串使用数组访问器时,会发生这种情况。例如

str1 = "hello"
title = str1["title"] ' error - Array operation attempted on variable not DIM'd.

相关内容

  • 没有找到相关文章

最新更新