pinyin(str, type = ‘pinyin’)

文字转拼音。

参数说明

  • 入参说明:
参数名 类型 必填 默认值 说明
str string 格式化的中文
type string pinyin py 、 PY 、pinyin 、 PINYIN、 PinYin
  • 返回数据说明:string
    返回的是拼音

使用方法

  • 代码示例:

    import { pinyin } from '@jecloud/utils';
    const text = '中国';
    const value1 = pinyin(text); // zhongguo
    const value2 = pinyin(text,'py'); // zg
    const value3 = pinyin(text,'PY'); // ZG
    const value4 = pinyin(text,'PINYIN'); // ZHONGGUO
    const value5 = pinyin(text,'PinYin'); // ZhongGuo
  • 事件脚本示例:

    // 函数引用示例如下,操作示例参考上方的代码示例
    const { pinyin } = JE;
最后编辑: 秦永莲  文档更新时间: 2024-08-08 13:51   作者:秦永莲