请教,console.log 格式问题如何解决
请教,console.log访问有时候格式会乱,如何解决?
5 回复
打印之前trim 一下,去掉下左空格就好了 正则 /\s+//i
这不是什么bug吧;你console.log 输出的是字符串吧; 把字符串的,左空格去掉就可以了;js也有不少方式。 全局的console.log 没有设置, 你可以自己封装一个方法;当然直接改console.log 也是可以的;全局的修改就是 调用之前 app.js 那入口之类的文件地方
console.log = function (...args) {
var uarg = args[0];
if (typeof uarg !== 'string') {
console.log.call(null, args);
return ;
}
uarg = 替换方法后的字符串;
args[0] = uarg;
console.log.call(null, args);
}
那么以后用的就应该是这个方法了
123