给 dataset 增加了get_field_names

This commit is contained in:
ChenXin 2019-04-28 20:13:51 +08:00
parent bb01904fc8
commit 3465d2a08f

View File

@ -501,6 +501,14 @@ class DataSet(object):
"""
return self.field_arrays
def get_field_names(self)->list:
"""返回一个list包含所有 field 的名字
:return: list:
"""
return sorted(self.field_arrays.keys())
def get_length(self):
"""获取DataSet的元素数量