Mock.Random 是一个工具类,用于生成各种随机数据
var Random = Mock.Random
/** 1.
* @function Random.capitalize( word )
* @param {string} word 英文字符串
* @returns {string}
* @description 首字母大写
*/
Random.capitalize("hello") // Hello
/** 2.
* @function Random.upper( str )
* @param {string} str 英文字符串
* @returns {string}
* @description 全部大写
*/
Random.upper("hello") // HELLO
/** 3.
* @function Random.lower( str )
* @param {string} str 英文字符串
* @returns {string}
* @description 全部小写
*/
Random.lower("HELLO") // hello
/** 4.
* @function Random.pick( arr )
* @param {array} arr 一个数组
* @returns {string}
* @description 从数组中随机选取一个元素返回
*/
Random.pick([1, 2, 3, 4, 5]) // 1
/** 5.
* @function Random.shuffle( arr )
* @param {array} arr 一个数组
* @returns {string}
* @description 打乱数组顺序并返回
*/
Random.shuffle([1, 2, 3, 4, 5]) // [3, 2, 4, 1, 5]
/** 1.
* @function Random.guid()
* @returns {string}
* @description 随机生成一个GUID
*/
Random.guid() // 随机生成一个GUID
/** 2.
* @function Random.id()
* @returns {string}
* @description 随机生成一个18位身份证
*/
Random.id() // 随机生成一个18位身份证
/** 3.
* @function Random.increment( step? )
* @param {number} step=1 自增步长
* @returns {string}
* @description 生成一个全局的自增整数
*/
Random.increment() // 1
Random.increment(100) // 101
Random.increment(1000) // 1101
mockjs下载,日期2021-12-07
链接:https://pan.baidu.com/s/1jlwMfmzQEVm6kegKO1DFzw
提取码:wskh