Node端汉字转拼音库, 针对小程序设计, 不支持多音字
直接复制 word-pinyin.d.ts
, word-pinyin.js
文件
或者
yarn add word-pinyin
import PinYin from "word-pinyin";
PinYin.getPinyin("你好骚啊") // ni hao sao a
PinYin.getFirstLetter("你好骚啊") // NHSA
getPinyin(chinese: string, splitter: string = ' ') 获取汉字的拼音
- cinese: 汉字
- splitter: 字与字之间的分隔符
getFirstLetter(str: string) 获取汉字的拼音首字母
- str: 汉字