Skip to content

Commit

Permalink
完善 parts 的文档
Browse files Browse the repository at this point in the history
  • Loading branch information
lip8up committed May 15, 2022
1 parent aebb20f commit a1f49c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ __toString() | 无法被主动调用,在对实例本身进行字符串连接
--- | ---
allConstants() | 获取全部常量列表,格式:`[ key1 => [value1, label1], ... ]`,例如:`[ 'One' => [1, '一'], 'Two' => [2, '二'], 'Three' => [3, '三'] ]`
asList() | 作为列表返回,以便前端使用,返回值用类 js 格式表示:`[ { key: key1, value: value1, label: label1 }, ... ]`
parts() | 将实例的一部分,作为列表返回,返回值用类 js 格式表示:`{ value, label }`。注意,这是实例方法。
allKeys() | 获取全部 key 列表。
allValues() | 获取全部 value 列表。
allLabels() | 获取全部 label 列表。
Expand Down
2 changes: 1 addition & 1 deletion src/Enum.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public static function asList(): array
}

/**
* 将值的一部分,作为列表返回,返回值用类 js 格式表示:`{ value, label }`。注意,该方法是实例方法
* 将实例的一部分,作为列表返回,返回值用类 js 格式表示:`{ value, label }`。注意,这是实例方法
*
* @param array $parts 默认 `['value', 'label']`,即只返回 value、label
* @return array
Expand Down

0 comments on commit a1f49c5

Please sign in to comment.