大家好!我叫戴向天
QQ群:602504799
QQ:809002582
getType 详细代码==> https://blog.csdn.net/weixin_41088946/article/details/91038867
/** 获取正确的数据格式,
* 如果传进来的数据格式是正确的就返回自身,
* 如果不是就进行返回一个需要的数据格式 */
function getSuccessData(obj, type) {
let itemType = getType(obj);
if (getType(type) != 'string') type = getType(type);
if (itemType == type) return obj;
switch (type) {
case 'array':
return [];
case 'json':
return {};
case 'string':
return "";
case 'number':
return 0;
case 'function':
return () => {
}
}
}
在开发的过程中,有时候会遇到,一个变量有多种数据格式,或者在请求后台的时候,突然后台抛出了异常信息,而前端却一正确的数据格式对页面进行渲染。结果导致前端代码报错,使线程遭到堵塞。无法能够进行下一步。
目前我就是用在请求后台数据