我想在名爲'table1'的重複表中顯示學生。當用戶點擊其中一個人時,會顯示學生註冊的詳細信息。此XPath表達式有什麼問題
我嘗試了這一點,從表中索引,然後我將登記實例中的學生ID與學生實例中的ID進行比較。當我寫這篇文章
<xf:output ref="Course_idCourse"/>
其中Course_idCourse
是在招生
的XML文件看起來像這樣
</enrollment>
<Course_idCourse>1</Course_idCourse>
<Student_idStudent>2</Student_idStudent>
<year>2014</year>
<Semester>1</Semester>
<mark>50</mark>
<idEnrollment>1</idEnrollment>
</enrollment>
元素有一個學生則顯示
<xf:repeat nodeset="/instance('enrollInstance')/enrollment[Student_idStudent=student[index('table1')]/idStudent]">
什麼看起來像這樣的xml文件
<Student>
<idStudent />
</Student>
感謝您的幫助。
顯示您要定位的XML源 – JWiley
您是否還在使用1.0或2.0?無論哪種方式,沒有一個指標()操作 – JWiley
指數()是特定於XForms的 –