-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
中文文档 #1
Comments
这个有问题,忽略了例如,console.log的第二个参数 //code |
@litson 特意不支持的. 大多数情况下一个参数就能搞定 see: seajs/seajs#607 |
了解 |
我想说的实际情况是:
所以建议 |
不同意。log 并非 seajs 核心功能,我都想去掉这个功能,记不清楚为何当初只做了简化,而未果断地完全去掉。 |
删除 seajs.log 也未尝不可,目前这个插件太简单没什么实际用处。 不一定在 seajs 里,不过我还是有必要有一个全局的调试工具,可以:
|
hotoo 说的不就是 seajs-debug 。 |
我想说这个可以考虑结合在 seajs-debug 里。 |
不过不同的是,要求在动态加载 debug 插件之前, xxx.log 是不会报错的。 |
加载 seajs-log 插件后,seajs 会拥有 log 方法。
seajs.log
Function
苦逼的前端经常会在代码中加入类似下面这种代码:
为的是上线后,如果某个浏览器不支持
console
,代码不会抛错。有了 Sea.js,我们再也不用这么去担心受怕了。直接通过
seajs.log
就可以搞定一切:上面是简单示例,只要是
console
支持的方法,都可以作为最后一个参数传进去。默认调用的是console.log
方法。注意:
console.log
信息默认不会显示,在 Sea.js 的debug
为 true 时才显示。The text was updated successfully, but these errors were encountered: