Signed-off-by: 吴文峰 <kevin@lmve.net>
This commit is contained in:
2026-04-17 20:46:21 +08:00
parent 3bb51d0794
commit 8dce0346a7
10 changed files with 370 additions and 78 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* 检查字符串是否是合法的 URL
* @param {string} str
* @returns {boolean}
*/
export function isUrl(str) {
if (!str || typeof str !== 'string') return false
// 必须以 http:// 或 https:// 开头(接口地址必须带)
const reg = /^https?:\/\/.+/i
return reg.test(str.trim())
}