hGet 方法用于获取存储在哈希表中指定字段的值。
hGet(key: string, field: string): string
参数
参数 | 类型 | 描述 |
key | string | 键名 |
field | string | 字段名 |
返回
类型 | 描述 |
string | 成功时,返回对应字段的值 |
样例
import redis from "pts/redis";let client = new redis.Client("redis://:<password>@<host>:6379/0");export default function main() {let hSetResp = client.hSet("hash", "k", 1, "k1", 2); // [k1, v1, k2, v2, ...]console.log(`redis hSet ${hSetResp}`); // 2let hGetResp = client.hGet("hash", "k");console.log(`redis hGet ${hGetResp}`); // 1}