我想知道在使用脚本函数时从Application.cfc文件中调用变量的新方法,它的格式为“this.something”我的例子:
component {
// application variables
this.datasource = "my DSN";
}
现在在我的 cfquery 中,我想访问它。我过去使用过,我会在 Application.cfc 中使用 [cfset REQUEST.dataSource ="MyDSN"],然后在我的 cfqrey 中我会说;
<cfquery name="rs_dailytip" datasource="#REQUEST.dataSource#">
My SQL
</cfquery>
我的问题是如何使用我正在使用“this.datasource”的新 Application.cfc 执行此操作?