0
以下のスキーマが異なるのはなぜですか?彼らは、そのいずれかで異なっている必要が...XSD Keyrefフィールドは、要素名の代わりに "。"でのみ使用できますか?
<!-- This works -->
<xsd:keyref name="followsKey" refer="userKey">
<xsd:selector xpath="user/follows" />
<xsd:field xpath="." />
</xsd:keyref>
<!-- This doesn't -->
<xsd:keyref name="followsKey" refer="userKey">
<xsd:selector xpath="user" />
<xsd:field xpath="@follows" />
</xsd:keyref>
私はまた、 '' following''をatシンボルなしで使ってみましたが、残念ながら複数の '' following''子があります。説明ありがとう! – Adam