将 VBA 数组转换为 JSON 数组
我正在努力将 VBA 中的数组转换为 JSON。互联网上的大部分信息都是相反的。以前有人这样做过吗?你还有这个功能吗?
我需要在 VBA (excel) 中获取关联数组并将其转换为 JSON,以便我可以在我的网站上的 javascript 中使用它。
结构
cars ['BMW'][0]['model'] = 'Series 5'
cars ['BMW'][0]['year'] = 2000
cars ['BMW'][0]['shape'] = 'hatch'
cars ['BMW'][0]['doors'] = 5
cars ['BMW'][1]['model'] = 'Series 3'
......
I am struggling to convert an array in VBA to JSON. Most of the info on the internet is for the reverse. Has anyone done this before? Do you still have the function?
I need to take an associative array in VBA (excel) and convert it to JSON so I can use it in javascript on my site.
Structure
cars ['BMW'][0]['model'] = 'Series 5'
cars ['BMW'][0]['year'] = 2000
cars ['BMW'][0]['shape'] = 'hatch'
cars ['BMW'][0]['doors'] = 5
cars ['BMW'][1]['model'] = 'Series 3'
......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对象文字的 Javascript 数组:
可能的 JSON 等效项:
除非您问不同的问题?
Javascript array of object literals:
Possible JSON equivalent:
Unless you're asking a different question?
假设这是一个包含行和列的 Excel 电子表格,您的 JSON 结构将如下所示。
假设您有 5 行和 5 列。 (r1c1 是第 1 行、第 1 列的单元格)
Assuming this is an Excel Spreadsheet with rows and columns, your JSON structure will look something like.
This assumes you have 5 rows and 5 columns. (r1c1 is the cell at row1,column1)