js随机生成16位字符串

1,786 阅读1分钟

js随机生成16位字符串,包含大小写、数字。

/**
 * 随机字符串16位
 */
function createNonceStr() {
	let chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
		'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c',
		'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
		'x', 'y', 'z'
	];
	let strs = "";
	for (let i = 0; i < 16; i++) {
		let id = parseInt(Math.random() * 61);
		nums += chars[id];
	}
	return strs;
}

i < 16中的16,代表字符串位数,你可以根据自己的需求改成n。