-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Miscellaneous
墨智 edited this page Mar 20, 2015
·
4 revisions
- Random.guid()
随机生成一个 GUID。
Random.guid()
// => "662C63B4-FD43-66F4-3328-C54E3FF0D56E"
Random.guid()
的实现参考了 UUID 规范。
- Random.id()
随机生成一个 18 位身份证。
Random.id()
// => "420000200710091854"
- Random.increment()
- Random.increment( step )
生成一个全局的自增整数。
可选。
整数自增的步长。默认值为 1。
Random.increment()
// => 1
Random.increment(100)
// => 101
Random.increment(1000)
// => 1101
Mock.js 最初的灵感来自 Elijah Manor 的博文 Mocking Introduction,语法参考了 mennovanslooten/mockJSON,随机数据参考了 victorquinn/chancejs。