0
我知道這個話題是舊的。我正在學習和嘗試解析,但不知道如何去做。你們可以告訴我怎麼做,或者更好地幫助我獲得一個或兩個價值觀?用xml中的「count」將數據解析爲表格html
<Metainformation>
<cash>ABC XYZ</cash>
<Doctor>Dr. Peter Smith</Doctor>
<DoctorID>12345678</DoctorID>
<Quartal>Q22004</Quartal>
<Checkdate>20040404123000</Checkdate>
</Metainformation>
<Patientlist>
<Normal_Patient>
<Unchanged count="123"/>
<New count="3"/>
<Closed count="2"/>
<InTest count="4"/>
</Normal_Patient>
<Special_Patient>
<Special_Quantity count="8" />
</Special_Patient>
<Notfound_Patient>
<ABC_available count="9" />
<DEF_available count="7" />
</Notfound_Patient>
<Total old="125" new="126"/>
</Patientlist>
我的表是在這裏: https://jsfiddle.net/n9ygoL52/
非常感謝喬丹。我提出瞭解決方案,但我的問題也是關於'count'的數據(例如,來自'')。我怎樣才能解析'123'到我的桌子? –
gnase
正在尋找這個。看到你在你的xml中有錯誤。 Metainformation>必須到文件末尾。總計在關閉標記處添加一個斜槓:) –
謝謝,你是對的。我已經將'/'添加到Total中了。但我不認爲 Metainformation>應該在最後。我認爲這個XML數據由兩部分組成:'Metainformation'和'Patientlist'。順便說一句,你能告訴我從'count'值的方法嗎? – gnase