2016-12-29 76 views
0

我一直在編寫一個(令人難以置信的簡單)XSLT來讓MS Access讀取從另一個軟件包中獲得的此XML文檔,並且我無法獲取值要轉移的元素。當我輸入XML文檔並應用XSLT轉換時,它給了我5個字段,「EventID」,「DeviceID」,「Officer」,「Start」和「Stop」,這非常棒。 EventID,Start和Stop成功地顯示XML文檔中的所有源屬性,但DeviceID和Officer元素爲空。XSLT新手 - 將XML導入到MS Access中留下元素值空白

這裏的源XML:

<?xml version="1.0" encoding="UTF-8"?> 
<recording-event desiredStreamState="Routine" dvr="dvr" stop-time="2016-12-22T02:28:21Z" start-time="2016-12-22T02:20:08Z" stop-tick="1996428" start-tick="1995441" reid="00:00:12:a0:27:c0-1990499"> 
    <info> 
    <officer id="60">Foo Bar</officer> 
    <dept>9bcd1176-1c45-493f-ac27-440f1e191feb</dept> 
    <vehicle>VHC2-010176</vehicle> 
    <protected>0</protected> 
    </info> 
    <video hashType="none"> 
    <metadata hashCode="1b569a7dcb7f0212b574e303a4eb8031" name="tick1990499-tick1990499.mtd"/> 
    <streams> 
     <stream stop-tick="1996428" start-tick="1995441" num="1"> 
     <file hashCode="0e089f550866d3c8dd6d898516fdbb33" name="tick1995441-tick1996428-video1.mp4"/> 
     <file hashCode="113fd040423905529e456985b160298b" name="tick1995441-tick1996428-video1.vtt"/> 
     <file hashCode="c87cbb2e85292d3a8024cf7000473736" name="tick1995441-tick1996428-video1.json"/> 
     </stream> 
    </streams> 
    </video> 
    <etl ContentsRevision="1"/> 
</recording-event> 

下面是我使用XSLT:

<?xml version="1.0" encoding="UTF-8"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 

    <xsl:template match="recording-event"> 
    <Info> 
     <EventID><xsl:apply-templates select="@reid"/></EventID> 
     <DeviceID><xsl:value-of select="vehicle"/></DeviceID> 
     <Officer><xsl:value-of select="officer"/></Officer> 
     <Start><xsl:apply-templates select="@start-time"/></Start> 
     <Stop><xsl:apply-templates select="@stop-time"/></Stop> 
    </Info> 
    </xsl:template> 

</xsl:stylesheet> 

就是這樣。我試着在這裏搜索問題數據庫,並且我認爲它可能與命名空間有關,但當我與它們混淆時沒有運氣。

What it looks like when I import into MS Access

我想它返回:

EventID= 2:a0:27:c0-1990499 
DeviceID= VHC2-010176 
Officer= Foo Bar 
Start= 2016-12-22T02:28:21Z 
Stop= 2016-12-22T02:28:21Z 

什麼它目前給我:

EventID= 2:a0:27:c0-1990499 
DeviceID= 
Officer= 
Start= 2016-12-22T02:28:21Z 
Stop= 2016-12-22T02:28:21Z 
+0

你必須向我們展示了預期的輸出和期望的輸出,在* XML *。 –

回答

0

你的路徑是關閉匹配XML中的元素。 Office和Vehicle都是Info元素的嵌套元素。嘗試使用下面的XSL,你應該得到的值的車輛(的DeviceID)和官員,以及:

<?xml version="1.0" encoding="UTF-8"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 

<xsl:template match="recording-event"> 
<Info> 
    <EventID><xsl:apply-templates select="@reid"/></EventID> 
    <DeviceID><xsl:value-of select="info/vehicle"/></DeviceID> 
    <Officer><xsl:value-of select="info/officer"/></Officer> 
    <Start><xsl:apply-templates select="@start-time"/></Start> 
    <Stop><xsl:apply-templates select="@stop-time"/></Stop> 
</Info> 
</xsl:template> 

+0

非常感謝!我感謝你的時間! – Kyle