javascript - 打印一个js对象的实际类型
问题描述
http.createServer((req,res)=>{ res.write(’hello world’); console.log(typeof res);// obj res.end();});
如何 查看req和res的具体对象类型,这样可以去文档中看具体详细api.typeof打印出的是object,我希望打印出的是http.ServerResponse
怎么搞
问题解答
回答1:打印函数的类信息:
function classof(obj){ if(typeof(obj)==='undefined')return 'undefined'; if(obj===null)return 'Null'; var res = Object.prototype.toString.call(obj).match(/^[objects(.*)]$/)[1]; if(res==='Object'){res = obj.constructor.name;if(typeof(res)!=’string’ || res.length==0){ if(obj instanceof jQuery)return 'jQuery';// jQuery build stranges Objects if(obj instanceof Array)return 'Array';// Array prototype is very sneaky return 'Object';} } return res;}// Exampleconsole.log(classof(new Date())); // => 'Date'
相关文章:
1. python - 如何把152753这个字符串转变成时间格式15:27:532. python没入门,请教一个问题3. javascript - swiper轮播图使用左右布局高度不一致4. php - 想要远程推送emjio ios端怎么搞 需要怎么配合5. python - 数据无法插入到mysql表里6. mysql - 类似于之类的通知系统如何设计数据库7. 更新mysql中被别人锁定的行, 能不能快速失败直接报错, 而不是一直等待8. mysql优化 - mysql EXPLAIN之后怎么看结果进行优化 ?9. mysql - 关于时间的入库问题,大神们你们存数据库的时间是取本地的时间,还是取utc的时间?10. python - 关于beautifulsoup获取文档内容
