blob: b75d0133f7f6ab134d4f915f8f1a2f211bdf0107 (
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
|
---
title: SpeechGrammar.weight
slug: Web/API/SpeechGrammar/weight
tags:
- API
- SpeechGrammar
- Web Speech API
- 实验性
- 属性
- 引用
- 权重
- 识别
- 语音识别
translation_of: Web/API/SpeechGrammar/weight
---
<p>{{APIRef("Web Speech API")}}{{SeeCompatTable}}</p>
<p>{{domxref("SpeechGrammar")}} 接口的可选属性 <strong><code>weight</code></strong> 设置并返回了一个 <code>SpeechGrammar</code> 对象的权重。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">var myGrammarWeight = speechGrammarInstance.weight;</pre>
<h3 id="值">值</h3>
<p>浮点数表示了当前文法的权重,范围在 0.0-1.0 之间。</p>
<h2 id="样例">样例</h2>
<pre class="brush: js">var grammar = '#JSGF V1.0; grammar colors; public <color> = aqua | azure | beige | bisque | black | blue | brown | chocolate | coral | crimson | cyan | fuchsia | ghostwhite | gold | goldenrod | gray | green | indigo | ivory | khaki | lavender | lime | linen | magenta | maroon | moccasin | navy | olive | orange | orchid | peru | pink | plum | purple | red | salmon | sienna | silver | snow | tan | teal | thistle | tomato | turquoise | violet | white | yellow ;'
var recognition = new SpeechRecognition();
var speechRecognitionList = new SpeechGrammarList();
speechRecognitionList.addFromString(grammar, 1);
recognition.grammars = speechRecognitionList;
console.log(speechRecognitionList[0].src); // 应该返回和上面文法变量一样的内容
console.log(speechRecognitionList[0].weight); // 应该返回 1 - 与上面第四行所设置的权重一致
</pre>
<h2 id="规格">规格</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规格</th>
<th scope="col">状态</th>
<th scope="col">描述</th>
</tr>
<tr>
<td>{{SpecName('Web Speech API', '#dfn-grammarWeight', 'weight')}}</td>
<td>{{Spec2('Web Speech API')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("api.SpeechGrammar.weight")}}
<h2 id="相关链接">相关链接</h2>
<ul>
<li><a href="/en-US/docs/Web/API/Web_Speech_API">Web Speech API</a></li>
</ul>
|