如何从其他ColdFusion文件中获取值

时间:2013-06-21 19:29:09

标签: mysql coldfusion dreamweaver coldfusion-8

请考虑以下代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PieChart</title>
</head>

<body>
<div align="center">
<cfchart
         format="png"
         scalefrom="0"
         scaleto="1200000"
         pieslicestyle="solid">
    <cfchartseries
                 type="pie"
                 serieslabel="Website Traffic 2006"
                 seriescolor="blue">
        <cfchartdata item="% OPEN" value="30">
        <cfchartdata item="%DROPPED" value="1">
        <cfchartdata item="% PROCESSED" value="20">
        <cfchartdata item="% BOUNCE" value="1">
        <cfchartdata item="% DELIVERED" value="17">
        <cfchartdata item="% DEFERRED" value="31">
    </cfchartseries>
</cfchart>

</div>
</body>
</html>

以上文件名为"PieChart.cfm"

在上面的代码中,我对值进行了硬编码(30,1,20,1,17,31)。但是,我有其他coldfusion文件,例如(Count_Open.cfm,其中包含SQL语句,文件返回% OPEN的值,类似于其他文件的情况,即{ {1}},Count_Dropped.cfm rtc)

如何在我的文件Count_Delivered.cfm中使用上述文件返回的值,这样如果数据不断变化,我不必反复运行文件并对值进行硬编码。

如果我的问题不明确,请帮助并告诉我。

由于

1 个答案:

答案 0 :(得分:2)

cfinclude标签可能是要走的路。我会把这个包含在其他的中。请注意,您不要复制doctype,html,head或body标签。