mock.js文档详解6及下载(Random中的Helper,Miscellaneous种类函数)

8 篇文章 0 订阅

Mock.Random 是一个工具类,用于生成各种随机数据

var Random = Mock.Random

  • Helper

/** 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]
  • Miscellaneous

/** 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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

合法的咸鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值