我该如何解决
function moveFaultySims(cellNo,isTested)
{
{
if(user.usercellphone=="8888888888")
{
if(isTested){
//do nothing
}
else{
db.faultysimcell.insert({simcell:cellNo});
}
}
else{
console.log(" device not in the default user account"+cellNo);
}
}
})
答案 0 :(得分:0)
function moveFaultySims(cellNo,isTested)
{
{
if(user.usercellphone=="8888888888")
{
if(1==isTested){
//do nothing
}
else{
db.faultysimcell.insert({simcell:cellNo});
}
}
else{
console.log(" device not in the default user account"+cellNo);
}
}
})
请检查此代码 我将if语句更改为1 == isTested
答案 1 :(得分:0)
在if中评估isTested
时遇到麻烦了吗?请详细说明您面临的问题。
传递除空字符串''
,null
和false
之外的任何东西的结果为true,因此请注意,如果将字符串作为方法的第二个参数传递,则导致if('false')
返回是的。