当前位置: 首页 > 文档资料 > Mock.js 中文文档 >

Miscellaneous

优质
小牛编辑
133浏览
2023-12-01

Random.guid()

  • Random.guid()

随机生成一个 GUID。

Random.guid()
// => "662C63B4-FD43-66F4-3328-C54E3FF0D56E"

Random.guid() 的实现参考了 Random.id()

  • Random.id()

随机生成一个 18 位身份证。

Random.id()
// => "420000200710091854"

Random.increment( step? )

  • Random.increment()
  • Random.increment( step )

生成一个全局的自增整数。

step

可选。

整数自增的步长。默认值为 1。

Random.increment()
// => 1
Random.increment(100)
// => 101
Random.increment(1000)
// => 1101