解决Uncaught (in promise) TypeError: Object(...) is not a function报错

今天搬砖的时候遇到一个报错

问题:
Uncaught (in promise) TypeError: Object(…) is not a function
如图所示
解决Uncaught (in promise) TypeError: Object(...) is not a function报错_第1张图片

原因:
经过排查,发现原因是导入的JS方法没有用大括号接收,然后又把它当做方法调用了。低级错误

解决方法:
导入的js方法要用大括号接收:

import {callMethodLimitPage} from './getAllData.js'

你可能感兴趣的:(JavaScript,前端,javascript)