标签: jquery node.js
使用node.js如何检测返回的值为string或[object][object]
string
[object][object]
我的jobObj有时会返回[object][object] 所以我必须检查知道哪些值像字符串或[对象],并且必须根据它进行一些操作
jobObj
答案 0 :(得分:2)
使用typeof一元运算符:
typeof
if (typeof jobObj === 'string') { //it's a string else { //it's not a string }