从 AppleScript 记录中检索项目
Retrieving items from AppleScript record
我有一条 AppleScript 记录,我的JSON,它是我使用 JSON 助手从 JSON 条目创建的:
{"height":200.0,"width":300.0,"productoption":["fabric","rectangle","roll"],"id":33,"product":["backdrop"]}
例如,我可以通过使用
product of myJSON
我不知道如何访问具有多个条目的产品选项密钥。
其实是一样的,键productoption
的值是一个数组(AppleScript术语中的list
)
set options to productoption of myJSON
repeat with anOption in options
display dialog anOption
end repeat
我有一条 AppleScript 记录,我的JSON,它是我使用 JSON 助手从 JSON 条目创建的:
{"height":200.0,"width":300.0,"productoption":["fabric","rectangle","roll"],"id":33,"product":["backdrop"]}
例如,我可以通过使用
product of myJSON
我不知道如何访问具有多个条目的产品选项密钥。
其实是一样的,键productoption
的值是一个数组(AppleScript术语中的list
)
set options to productoption of myJSON
repeat with anOption in options
display dialog anOption
end repeat