From d63f280aeaea6fabf7e84e758cfa3ae5811150e6 Mon Sep 17 00:00:00 2001 From: lip8up Date: Fri, 18 Feb 2022 19:32:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20asList=20=E7=9A=84?= =?UTF-8?q?=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + src/Enum.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6059c39..bb791b9 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ __toString() | 无法被主动调用,在对实例本身进行字符串连接 方法名 | 说明 --- | --- allConstants() | 获取全部常量列表,格式:`[ key1 => [value1, label1], ... ]`,例如:`[ 'One' => [1, '一'], 'Two' => [2, '二'], 'Three' => [3, '三'] ]`。 +asList() | 作为列表返回,以便前端使用,返回值用类 js 格式表示:`[ { key: key1, value: value1, label: label1 }, ... ]`。 allKeys() | 获取全部 key 列表。 allValues() | 获取全部 value 列表。 allLabels() | 获取全部 label 列表。 diff --git a/src/Enum.php b/src/Enum.php index 8a7b969..59cf3f6 100644 --- a/src/Enum.php +++ b/src/Enum.php @@ -143,7 +143,7 @@ public static function allConstants(): array } /** - * 作为列表返回,以便前端使用,类 js 格式:`[ { key: key1, value: value1, label: label1 }, ... ]`。 + * 作为列表返回,以便前端使用,返回值用类 js 格式表示:`[ { key: key1, value: value1, label: label1 }, ... ]`。 * * @return array *