判断对象的类型
export default {
getTypes: function(instence) {//获取数据类型
return Object.prototype.toString.call(instence).slice(8, -1);
}
};
import helper from "./lib/helper.js"
if(helper.getTypes(store.getters.getLoginUser)==="Object"){
next()
}
判断对象的类型
export default {
getTypes: function(instence) {//获取数据类型
return Object.prototype.toString.call(instence).slice(8, -1);
}
};
import helper from "./lib/helper.js"
if(helper.getTypes(store.getters.getLoginUser)==="Object"){
next()
}
本文标题:全能的判断对象类型的方法
本文链接:https://www.haomeiwen.com/subject/tmdrjqtx.html
网友评论