python多维数组遍历问题:
net_interfaces:
{'lo0': {'name': 'lo0', 'ip': 'fe80::1%lo0', 'bytes_sent': 79486408, 'bytes_recv': 79486408, 'packets_sent': 59982, 'packets_recv': 59982, 'errors_in': 0, 'errors_out': 0, 'dropped_in': 0, 'dropped_out': 0}}
现在想遍历这个字典:
Interface
IP
RX/s
TX/s
{% for ni in net_interfaces %}
{{ ni }}
{{ ni.ip }}
{{ ni.send_rate|default(0)|filesizeformat }}
{{ ni.recv_rate|default(0)|filesizeformat }}
{% endfor %}
但是这样遍历数组好像不行耶,求指点
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
{% for ni in net_interfaces.lo0 %}
for key,value in data
for key, value in data.items