
开发语言
Java
幸橙
为了世界和平
展开
-
推荐一款中文转拼音的前端插件-pinyin
写在前面 最近在项目中,需要使用中文转拼音的功能,在网上找到一款比较全面的js插件-pinyin.js使用方法1、安装npm i pinyin 或者 npm i js-pinyin2、使用方法// 引入拼音插件const PINYIN = require('pinyin');const chinese = "绿色";const pinyinSTYLE_NORMAL = PINYIN(chinese, { style: PINYIN.STYLE_NORMAL, }原创 2021-03-01 19:50:44 · 1962 阅读 · 2 评论 -
Ubuntu20下php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution
错误提示:SMTP ERROR: Failed to connect to server: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution (0)SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting邮件发送失败: SMTP connect() failed. https://原创 2021-02-05 00:59:32 · 1335 阅读 · 0 评论 -
HTML 压缩库 HtmlCompressor
HTML 压缩库 HtmlCompressorHtmlCompressor 是一个 Java 类库,用来对 HTML 内容进行压缩。HtmlCompressor 会删除 HTML 中无用的空格、空行、注释等内容。示例代码:HtmlCompressor compressor = new HtmlCompressor();compressor.setEnabled(true); // 如果false,则关闭所有压缩(默认值为true)compressor.setR原创 2021-01-04 13:19:04 · 1394 阅读 · 1 评论