摘要:
The engine "node" is incompatible with this module. Expected version "^12.22.0 || ^14.17.0 || >=16.0.0". Got "14.15.4" 意思说你需要安装的module与当前node版本不匹配 解决: 阅读全文
摘要:
1、范围内取指定个数的随机整数 function getRandomNumber(start,end,n){ var arr=[]; for(var i=0;i<n;i++){ var number=Math.floor(Math.random()*(end-start+1)+start); if( 阅读全文
摘要:
export const isMobile=()=>{ var browser = { versions: function () { var u = navigator.userAgent, app = navigator.appVersion; return {//移动终端浏览器版本信息 tri 阅读全文