本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
規則參考
下表總結了文法文件中可能的各種規則參考形式。如需詳細資訊,請參閱語音辨識文法規格版本 1 W3C 建議中的規則參考
參考類型 | XML 表單 | 支援 |
---|---|---|
2.2.1 |
<ruleref
uri="#rulename"/> |
是 |
2.2.2 |
<ruleref
uri="grammarURI#rulename"/> |
否 |
2.2.2 |
<ruleref
uri="grammarURI"/> |
否 |
2.2.2 |
<ruleref uri="grammarURI#rulename"
type="media-type"/> |
否 |
2.2.2 |
<ruleref uri="grammarURI"
type="media-type"/> |
否 |
2.2.3 |
|
否 |
備註
-
Grammar URI 是外部 URI。例如:
http://grammar.example.com/world-cities.grxml
。 -
媒體類型可以是:
-
application/srgs+xml
-
text/plain
-
範例
<rule id="city" scope="public">
<one-of>
<item>Boston</item>
<item>Philadelphia</item>
<item>Fargo</item>
</one-of>
</rule>
<rule id="state" scope="public">
<one-of>
<item>FL</item>
<item>MA</item>
<item>NY</item>
</one-of>
</rule>
<!-- "Boston MA" -> city = Boston, state = MA -->
<rule id="city_state" scope="public">
<ruleref uri="#city"/> <ruleref uri="#state"/>
</rule>