首页
注册
登录
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请
登录
V2EX
›
wangkiliaosi8899
›
全部回复第 1 页 / 共 1 页
回复总数
1
2020-01-18 17:08:00 +08:00
回复了
IMFFA
创建的主题
›
JavaScript
›
请教一下,怎么把这段代码换一个优雅的写法
看样子楼主深谙命令式编程的精髓;
function resolve(value){
const time = ['日','周','半月','月','季','半年','年'];
if(!Number.isInteger(value) || value>time.length){
throw new Error(`参数错误:需要 1~7 的整数`);
}
return Array.from(Array(time.length)).reduce((result, _c, index)=>{
const template = `<input
id="cycle_type_${index}"
type="radio"
name="cycle_type"
value="${index+1}"
${index+1===value?"checked":''}
title="${time[index]}"
lay-filter="cycle_type">`;
return result+template
},'')
}
console.log(resolve(2));
关于
·
帮助文档
·
博客
·
API
·
FAQ
·
实用小工具
·
1274 人在线
最高记录 6679
·
Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 10ms ·
UTC 17:54
·
PVG 01:54
·
LAX 09:54
·
JFK 12:54
Developed with
CodeLauncher
♥ Do have faith in what you're doing.