TypeError: can't convert console.log(...) to primitive type

Posted 一沙世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: can't convert console.log(...) to primitive type相关的知识,希望对你有一定的参考价值。

一、背景

火狐浏览器提示这个错误,谷歌没有。

二、出错代码

1 var eventHandlers = {
2       succeeded: function(e){
3             console.log(send success + e.cause) 
4        },
5        failed:    function(e){
6             console.log(send failed,reason=+e.cause)
7        }
8 };

三、原因

火狐处理console.log(‘send success‘ + e.cause)的时候,会默认把e.cause转换成String类型,所以提示如题的错误。

四、解决办法

不适用字符串拼接的方式,直接打印。

五、修订后的代码

 1 var eventHandlers = {
 2     succeeded: function(e){
 3         console.log(e.cause),
 4         console.log(send success) 
 5     },
 6     failed:    function(e){
 7         console.log(send failed,reason),
 8         console.log(e.cause)
 9     }
10 };    

六、测试结果

错误消除。

 

以上是关于TypeError: can't convert console.log(...) to primitive type的主要内容,如果未能解决你的问题,请参考以下文章

TypeError: can't pickle dict_values objects

TypeError: data argument can't be an iterator

TypeError: can't convert console.log(...) to primitive type

TypeError: can't compare offset-naive and offset-aware datetimes bugfix

python3.4.0 input Can't convert 'int' object to str implicitly 如何正确输出?

TypeError: can‘t convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to