码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-01-24 10:07:24      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:led   处理   错误   出错   string   代码   原因   字符   div   

一、背景

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

二、出错代码

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

标签:led   处理   错误   出错   string   代码   原因   字符   div   

原文地址:http://www.cnblogs.com/yoyotl/p/6346429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!