Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做一个基于 WEB 的电源管理系统,我正在使用 PLC Siemens S7-1200。我想在 javascript 中使用 PLC 中的一些标签来构建图表。当我使用:
var chartData = [{ country: "USA", visits: 230 }, ];
在图表代码中,这可以正常工作。
现在我想使用带有标签“电压”的变量值而不是固定数值“230”作为 PLC 中的标签。我怎样才能做到这一点?
如果变量中有值voltage,只需在对象中使用该变量:
voltage
var chartData = [{ country: "USA", visits: voltage } ];
演示