1 Star 0 Fork 0

fox.zhouzhou/images

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
getUrl.js 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
fox.zhou 提交于 2024-03-05 14:38 . feat: 测试
// 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);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/foxzhouzhou/images.git
git@gitee.com:foxzhouzhou/images.git
foxzhouzhou
images
images
master

搜索帮助