直播原始碼開發,vue漢字獲取字母首拼或拼音、大小寫

zhibo系統開發發表於2023-03-30

直播原始碼開發,vue漢字獲取字母首拼或拼音、大小寫

1.npm安裝

npm install js-pinyin


2.使用示例( charCase: 0 為大寫;charCase: 1 為小寫)


若不設定則預設為 charCase: 0

let pinyin = require("js-pinyin");
pinyin.setOptions({ checkPolyphone: false, charCase: 1 });
console.log(pinyin.getCamelChars('小明')); //xm
console.log(pinyin.getFullChars('部落格'));//BoKe


 以上就是直播原始碼開發,vue漢字獲取字母首拼或拼音、大小寫, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2942655/,如需轉載,請註明出處,否則將追究法律責任。

相關文章