9 lines
354 B
JavaScript
9 lines
354 B
JavaScript
export function generateUsername() {
|
|
// 生成纯随机字符串,不包含固定前缀
|
|
const now = new Date();
|
|
const timestamp = now.getTime(); // 使用时间戳
|
|
const rand1 = Math.random().toString(36).slice(2, 8); // 6位随机
|
|
const rand2 = Math.random().toString(36).slice(2, 6); // 4位随机
|
|
return `${rand1}${timestamp}${rand2}`;
|
|
}
|