0
我正在調用我的擴展對象的方法。Xslt文件中的特殊字符
這裏是我的方法的簽名:
public string GetValue(string xPath) { }
這裏是我把它在我的Xslt
文件地點:
<xsl:value-of select ="crn:GetValue('courier:_application/base:_entity/loan:_applicant/base:_entity/person:_phones/base:SmartRefOfPhoneeJDvviUx[base:_entity/contact:_isMobile/base:_underlyingValue='true']/base:_entity/contact:_secondaryPrefix/base:_underlyingValue')"/>
由於部分
[基地:_entity/contact:_isMobile/base:_underlyingValue ='true']
包含「字符,我得到一個錯誤
」預期令牌 ')',找到 '真'。 ... isMobile /基地:_underlyingValue = ' - >真< - '] /基地:_entity /聯繫人:_extensi ...「
我無法找到的x路逃逸字符。你有什麼建議嗎?
謝謝您的回答! – anilca