编程语言
首页 > 编程语言> > 如何使用JSHint显示JavaScript错误?

如何使用JSHint显示JavaScript错误?

作者:互联网

我正在尝试构建一个简单的JavaScript验证器,类似于JSHint.我想编写一个JavaScript代码并单击“验证”按钮,错误应该显示出来.

像这样的JSHINT(js-source)传递JavaScript源只会给你“真”或“假”,具体取决于代码是否有效.我想获得每个错误的详细信息(例如错误发生的行号,错误类型等).

这就是我已经拥有的.

http://jsbin.com/AZEpOHi/1/edit

解决方法:

the docs开始:

If your input passes JSHint tests, the function will return true. Otherwise, it will return false. In that case, you can use JSHINT.errors to retrieve the errors or request a complete report by calling the JSHINT.data() method.

错误位于JSHINT.errors数组中,这些对象包括行号和错误原因.

这是a jsfiddle that demonstrates a simple use of JSHINT.errors.

标签:javascript,jslint,jshint
来源: https://codeday.me/bug/20190629/1325341.html