function criar() {
}, 20000);
我需要在JS代码中添加此函数吗?
xz = Math['flo]() * 9999) + 1);
答案 0 :(得分:1)
如前所述,首先为此创建一个函数:
const xz = () => Math.floor((Math.random() * 9999) + 1);
然后您可以像这样使用它:
$['post']('/api/user/avatars', {
uniqueId: 'hhbr-0f6b016e79824439db28907b51493876',
name: 'SCORP_' + xz() // just call the function here again
})
演示:
function criar() {
const xz = Math.floor((Math.random() * 9999) + 1);
$['post']('/api/user/avatars', {
uniqueId: 'hhbr-0f6b016e79824439db28907b51493876',
name: 'SCORP_' + xz
})
}
setInterval(function() {
criar()
}, 20000);