Uncaught TypeError: str.replace is not a function

Posted snail8698428

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Uncaught TypeError: str.replace is not a function相关的知识,希望对你有一定的参考价值。

在做审核页面时,点击审核通过按钮不执行

后来F12控制台查看发现有报错

技术图片

是因为flisnullandxyzero未执行

然后找出这个方法,此方法为公共方法,将这个方法复制出来

然后使用console.log 输出找错误

发现方法执行到

if(Number(str.replace(".","")) < 0)时停止

整体方法----------------------------
function flisnullandxyzero(str) 
console.log(str);
if(null==str||( undefined==str)||(""==str))
return true;
else
console.log(Number(str));
if(Number(str.replace(".","")) < 0)
return true;
else
return false;



修改之后---------------------------
function flisnullandxyzero(str) 
if(null==str||( undefined==str)||(""==str))
return true;
else
if(Number(str) < 0)
return true;
else
return false;



总结
前端页面报错的时候,多用
  console.log();调试

以上是关于Uncaught TypeError: str.replace is not a function的主要内容,如果未能解决你的问题,请参考以下文章

如何解决问题:Uncaught (in promise) TypeError: promisify is not a function?

Uncaught TypeError

Uncaught TypeError: Cannot redefine property: $router

Uncaught TypeError: o.block is not a function

Laravel 5.1 和 Vue.js - 21678 Uncaught (in promise) TypeError: Cannot read property 'data' of null

jQuery Post blob 对象给出 Uncaught TypeError: Illegal invocation