为啥扫二维码的字串内容和数组中相同的字串不等??
如题,我实在不明白怎么回事了……
这是一个文本二维码,内容是“你好!世界!!!!”
onlyFromCamera: true , scanType: 'qrCode' , fail: ()=>{ return ;}, success: res=>{ this .isHelloWorld?(res.result); }
isHelloWorld: function(scanedText){ console.log(scanedText === "你好!世界!!!!"); } |
结果最终返回了false……我真是很崩溃,为啥不相等呢?
代码段: