代码拉取完成,页面将自动刷新
// https://gitee.com/foxzhouzhou/images/raw/master/imovie/Multiavatar-9a2e6349eb4d066c5a.png
/*
var Mock = require("mockjs");
var Random = Mock.Random;
for (var i = 0; i < 10; i++) {
let obj = {
id: Random.id(), // 身份证号
guid: Random.guid(),
name: Random.cname(),
age: Random.integer(20, 50),
asset: Random.float(200, 500000, 1, 6),
married: Random.boolean(),
birth: Random.datetime("yyyy-MM-dd HH:mm:ss"), // 值是指定格式的日期字符串
// birth2: new Date(Random.datetime("yyyy-MM-dd HH:mm:ss")), // 值是 Date 类型
addr: `${Random.province()}-${Random.city()}-${Random.county()}`,
email: Random.email("qq.com"),
// word: Random.cword(2, 5),
// string: Random.string(),
title: Random.ctitle(10, 15),
// senetence: Random.csentence(15, 20),
// paragraph: Random.cparagraph(),
};
console.log(obj);
}
*/
const Mock = require("mockjs");
const Random = Mock.Random;
const fs = require("fs");
const list = fs.readdirSync("./imovie");
const host = "https://gitee.com/foxzhouzhou/images/raw/master/imovie/";
const tList = list.map(v => {
return {
avatar: host + v,
guid: Random.guid(),
name: Random.cname(),
id: Random.id(), // 身份证号
date: Random.datetime("yyyy-MM-dd HH:mm"), // 值是指定格式的日期字符串
remark: Random.csentence(5, 30),
};
});
fs.writeFileSync("test.js", `module.exports=${JSON.stringify(tList)}`);
console.log(tList);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。