1

我正在尝试使用 ColdFusion 通过 XSLT 文件中的 URL 传递两个参数。

这是我的 XSLT 代码:

<xsl:template match="/">
    <xsl:text>Actors: </xsl:text>
    <xsl:apply-templates select="/movies/movie/actors/actor/name"/>
</xsl:template>

<xsl:template match="name">
      <xsl:element name="a">
          <xsl:attribute name="href">actor_details.cfm?movieID=<xsl:value-of select="../../../@movieID"/>&amp;actorID=<xsl:value-of select="../@actorID"/></xsl:attribute>
          <xsl:value-of select="." />
      </xsl:element>
      <xsl:element name="br" />
</xsl:template>

这是我的 actor_details.cfm 文件

<cfset MyXmlFile = Expandpath("test.xml")>
<cffile action="READ" variable="xmlInput"  file="#MyXmlFile#">
<cfset MyXslFile = Expandpath("actor_details.xsl")>
<cffile action="READ" variable="xslInput"  file="#MyXslFile#">

<cfset xslParam = StructNew() >
<cfset xslParam["movieID"] = "#url.movieID#" >

<cfset xmlOutput = XMLTransform(xmlInput, xslInput, xslParam )>
<!--- data is output --->
<cfcontent type="text/html" reset="yes">
<cfoutput>#xmloutput#</cfoutput>

这是我的 actor_details.xsl 文件

<xsl:param name="movieID"/>

<xsl:template match="/">
    <title>Actor details</title>
    <xsl:apply-templates select="/movies/movie[@movieID=$movieID]/actors/actor[@actorID=$actorID]"/>
</xsl:template>

<xsl:template match="actor">
    <xsl:text>Name: </xsl:text>
    <xsl:value-of select="name"/>
    <xsl:element name="br"/>
    <xsl:text>Age: </xsl:text>
    <xsl:value-of select="age"/>
    <xsl:element name="br"/>
</xsl:template>

所以根据通过 URL 传递的 movieID 和 actorID,actor_details 页面应该显示演员的姓名和年龄。我对 ColdFusion 很陌生,我不知道如何使用 ColdFusion 接收通过 URL 传递的参数。我在 actor_details.cfm 页面上遇到意外错误。

我认为问题出在 actor_details.cfm 页面的某个地方,但我就是不知道它是什么。

我的 XML 文件:

<movie movieID="1">
    <actors>
        <actor actorID="1"> 
            <name>Bob</name>
            <age>23</age>
        </actor>

        <actor actorID="2"> 
            <name>Jack</name> 
            <age>25</age>
        </actor>

        <actor actorID="3"> 
            <name>James</name>
            <age>38</age>
        </actor>
    </actors>   
</movie>

<movie movieID="2">
    <actors>
        <actor actorID="1"> 
            <name>Mike</name>
            <age>19</age>
        </actor>

        <actor actorID="2"> 
            <name>Daniel</name>
            <age>29</age>
        </actor>

        <actor actorID="3"> 
            <name>Phil</name> 
            <age>41</age>
        </actor>
    </actors>   
</movie>
4

2 回答 2

0

回答有关 URL 变量的问题。URL 是 CF 的变量范围之一,可以通过以下方式访问:

 <cfset myvar = #URL.actorid# >

Of course you don't have to use the # signs on the right but since you're just learning it's a good way to identify your CF vars.

Here is a link to CF 9 docs and CF's built in variable scopes.

于 2013-03-16T01:06:22.717 回答
0

I have fixed the problem by adding <cfset xslParam["actorID"] = URL.actorID > to my CFM file and <xsl:param name="actorID"/> to my XSL file.

于 2013-03-16T13:16:12.213 回答