0

Eg. I have two separate files with the same root name which can be seen in employment.xml and education.xml. The common word between both files is the word "code". I would like to ensure that for "code" , the values do not get repeated in their respective files.

So moving onto schema, how do i make the verification for code only. Since apprently two selectors do not work in one . I am trying to prevent writing too any and make the schema be reusable for more similar lists with "code".

My idea is to create a function like thing. In the sense, if it identifies "employmentstatus", then should result in 'xs:selector xpath = "employmentstatus"' and if identifies "education", then should result in '"xs:selector xpath = "education"' etc.

XMLスキーマで可能ですか? 何か提案は素晴らしいでしょうか?

XML ファイル:

雇用.xml

ここに画像の説明を入力

教育.xml

ここに画像の説明を入力

XML スキーマ:

rootwithattribut.xsd

ここに画像の説明を入力

4

1 に答える 1

0

"xs:selector xpath = "*""

これは、* が任意の要素ノードに一致するため機能します。現在、要素が1つしかないため、一時的に機能します。これは、要素名を取得するのに役立ちました。できます。

于 2013-07-31T06:54:24.227 に答える