aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/console/assert/index.html
blob: 4ce50bbef21a3d1712ceebacad758c86dbde8ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
title: Console.assert()
slug: Web/API/Console/assert
tags:
  - console
translation_of: Web/API/console/assert
---
<div>{{APIRef("Console API")}}</div>

<p>如果断言为false,则将一个错误消息写入控制台。如果断言是 <code>true</code>,没有任何反应。</p>

<p>{{AvailableInWorkers}}</p>

<div>
<p><code>console.assert()</code>方法在Node.js中的实现和浏览器中可用的<code>console.assert()</code>方法实现是不同的。在浏览器中当<code>console.assert()</code>方法接受到一个值为假断言的时候,会向控制台输出传入的内容,但是并不会中断代码的执行,而在Node.js v10.0.0之前,一个值为假的断言也将会导致一个<code>AssertionError</code>被抛出,使得代码执行被打断。v10.0.0修复了此差异,所以现在<code>console.assert()</code>在Node 和浏览器中执行行为相同 。</p>
</div>

<h2 id="语法">语法</h2>

<pre class="brush: js">console.assert(<em>assertion</em>, <em>obj1</em> [, <em>obj2</em>, ..., <em>objN</em>]);
console.assert(<em>assertion</em>, <em>msg</em> [, <em>subst1</em>, ..., <em>substN</em>]); // c-like message formatting</pre>

<h3 id="参数">参数</h3>

<dl>
 <dt><code>assertion</code></dt>
 <dd>一个布尔表达式。如果assertion为假,消息将会被输出到控制台之中。</dd>
 <dt><code>obj1</code> ... <code>objN</code></dt>
 <dd>被用来输出的Javascript对象列表,最后输出的字符串是各个对象依次拼接的结果。</dd>
 <dt><code>msg</code></dt>
 <dd>一个包含零个或多个子串的Javascript字符串。</dd>
 <dt><code>subst1</code> ... <code>substN</code></dt>
 <dd>各个消息作为字串的Javascript对象。这个参数可以让你能够控制输出的格式。</dd>
</dl>

<h2 id="案例">案例</h2>

<p>下面的代码示例演示了JavaScript对象的使用:</p>

<pre class="brush: js">const errorMsg = 'the # is not even';
for (let number = 2; number &lt;= 5; number += 1) {
    console.log('the # is ' + number);
    console.assert(number % 2 === 0, {number: number, errorMsg: errorMsg});
    // 或者使用 ES2015 对象简写:
    // console.assert(number % 2 === 0, {number, errorMsg});
}
// 输出:
// the # is 2
// the # is 3
// Assertion failed: {number: 3, errorMsg: "the # is not even"}
// the # is 4
// the # is 5
// Assertion failed: {number: 5, errorMsg: "the # is not even"}</pre>

<p>请注意, 你可以在大多数浏览器中使用 console.log 进行格式化输出</p>

<pre class="brush: js">console.log('the word is %s try number %d', 'foo', 123);
// 输出: the word is foo try number 123</pre>

<p><code><font face="Arial, x-locale-body, sans-serif"><span style="background-color: #ffffff;">但是 </span></font>console.assert</code> 在不同浏览器中可能获得不同的效果:</p>

<pre class="brush: js">console.assert(false, 'the word is %s', 'foo');
// correct output in Node (e.g. v8.10.0) and some browsers
//     (e.g. Firefox v60.0.2):
// Assertion failed: the word is foo
// incorrect output in some browsers
//     (e.g. Chrome v67.0.3396.87):
// Assertion failed: the word is %s foo</pre>

<p>有关详细信息,请参阅 {{Domxref("console")}} 文档中的 <a href="https://developer.mozilla.org/zh-CN/docs/Web/API/Console#%E8%BE%93%E5%87%BA%E6%96%87%E6%9C%AC%E5%88%B0%E6%8E%A7%E5%88%B6%E5%8F%B0">输出文本到控制台</a></p>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("Console API", "#consoleassertexpression-object", "console.assert()")}}</td>
   <td>{{Spec2("Console API")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p>{{Compat("api.Console.assert")}}</p>

<h2 id="相关链接">相关链接</h2>

<ul>
 <li><a href="https://console.spec.whatwg.org/#assert-condition-data">WHATWG Console Standard: console.assert</a></li>
 <li><a href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
 <li><a href="http://msdn.microsoft.com/library/gg589530">MSDN: Using the F12 Tools Console to View Errors and Status</a></li>
 <li><a href="https://developer.chrome.com/devtools/docs/console#assertions">Chrome Developer Tools: Using the Console</a></li>
</ul>