xml
  • coldfusion
  • 2011-07-18 50 views 0 likes 
    0

    這工作:的ColdFusion XMLSearch問題

    xmlSearch(thisScheduleXml,"/Schedules/Competition[@id = '58']/Match[@status != 'Complete']")> 
    

    這不:

    xmlSearch(thisScheduleXml,"/Schedules/Competition[@id = '<cfoutput>#url.competitionID#</cfoutput>']/Match[@status != 'Complete']")> 
    

    我沒有得到一個明顯的錯誤之處;第二個選項我回來了一個空的結構。

    +0

    沒關係...這是涉及到另一個問題。問題解決了。 – user460114

    回答

    0

    您不能在像這樣的函數參數中使用CFOUTPUT標籤。

    1

    嘗試創建XPath字符串像一個變量:

    <cfset match = "/Schedules/Competition[@id = '#url.competitionID#']/Match[@status != 'Complete']"> 
    <cfset xmlSearch(thisScheduleXml,match)> 
    
    +0

    +1,糾正OP的語法錯誤 – Nate

    相關問題