在解析一些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.