#样板

rem样板

window.onload=window.onresize=function(){varrem=document.documentElement.clientWidth*20/320;document.documentElement.style.fontSize=rem+'px';};meta标签:<metana...
代码星球 ·2020-07-14

redux样板代码简化写法

直接使用redux,要写很多样板代码,大量的actiontype,actionCreator。一个异步的方法要写三个actiontype,三个actionCreator,十分繁琐。下面是本人使用的一种简化写法,使用数组动态生成一些action和actionCreator,具有参考价值。action-type.jsexp...