0

我在跑步Coldfusion8/MySQL 5.0.88

我的数据库中有两个表:

modules
textblocks

我的网站运行多种语言,所以我在每个页面的开头都这样做,以根据用户选择的语言从数据库中加载文本块。

<cfquery datasource="#Session.datasource#" name="texte">
   SELECT *
   FROM textblocks
   WHERE lang = <cfqueryparam value = "#Session.lang#" cfsqltype="cf_sql_varchar" maxlength="2">  
</cfquery>
<cfoutput query="texte">
    <cfset "#trim(label)#" = "#trim(content)#">
</cfoutput>

如果我需要一个文本块,我可以简单地使用label这样的:

<cfoutput>#tx_hello_world#</cfoutput>

我的问题是包含模块列表的第二个表。

每个模块都有自己的描述(标题、子标题、信息、项目符号 1-5)。我必须遍历所有模块(25),所以我只是将它们存储labels在数据库中,希望做一个循环并labels从数据库中输出。不幸的是输出label123回报

 #label123#

vs我希望

 "text from table textblocks stored at label123"

问题:
是否可以在 MySQL 中存储“动态变量”并在输出这些变量时检索它们的基础值?如果不是,那么在一个循环中输出 25 个模块而不说“如果这是模块 A,则采用文本 tx_module_a_title,否则如果 ...”的更好方法是什么?

谢谢!

编辑:
所以我希望避免这个必须在每个循环上运行:

<cfif mods.module_name EQ "agents">
    <cfset variables.module_header = tx_module_b2b_agents_title>
    <cfset variables.module_subheader = tx_module_b2b_agents>
    <cfset variables.module_info = tx_module_b2b_agents_info>
    <cfset variables.module_bull_1 = tx_module_b2b_agn_accounts>
    <cfset variables.module_bull_2 = tx_module_b2b_agn_price_clients>
    <cfset variables.module_bull_3 = tx_module_b2b_agn_client_mgt>
    <cfset variables.module_bull_4 = tx_module_b2b_agn_create_retailer>
    <cfset variables.module_bull_5 = tx_module_b2b_exp_grace>
    <cfset variables.module_usage_tx = tx_vertreter/tx_gen_month>
<cfelseif mods.module_name EQ "preorder">
    <cfset variables.module_header = tx_module_b2b_preorder_title>
    <cfset variables.module_subheader = tx_module_b2b_preorder>
    <cfset variables.module_info = tx_module_b2b_preord_info>
    <cfset variables.module_bull_1 = tx_module_b2b_pre_split_type>
    <cfset variables.module_bull_2 = tx_module_b2b_pre_qty_y_n>
    <cfset variables.module_bull_3 = tx_module_b2b_pre_deliverydate>
    <cfset variables.module_bull_4 = tx_module_b2b_exp_grace>
    <cfset variables.module_bull_5 = "">
    <cfset variables.module_usage_tx = tx_gen_month >
<cfelseif mods.module_name EQ "export">
    <cfset variables.module_header = tx_module_b2b_export_title>
    <cfset variables.module_subheader = tx_module_b2b_export>
    <cfset variables.module_info = tx_module_b2b_export_info>
    <cfset variables.module_bull_1 = tx_module_b2b_exp_pricelists>
    <cfset variables.module_bull_2 = tx_module_b2b_exp_currencies>
    <cfset variables.module_bull_3 = tx_module_b2b_exp_customerlist>
    <cfset variables.module_bull_4 = tx_module_b2b_exp_regional_assortme>
    <cfset variables.module_bull_5 = tx_module_b2b_exp_grace>
    <cfset variables.module_usage_tx = tx_gen_month>
... 22 else-ifs to go
</cfif>

tx_如果我可以将文本块存储在数据库模块记录中的值后面,我可以从那里检索它们。

4

3 回答 3

1

当您从数据库输出内容时,您可以使用de()evalaute()在内容上处理变量。您可能需要使用嵌套组合。我忘记了确切的语法。 De(evaluate('#var#'))或类似的东西。

但是,如果您#的内容中有任何其他不是 var 的,这将证明是有问题的。我建议改用词典。请参阅本文内容管理:处理动态内容

于 2012-09-30T14:03:43.933 回答
1

假设您的 texte 查询中包含变量内容您可以执行以下操作:

<cfloopquery="texte">
    <cfset variables[trim(texte.label)] = trim(texte[content][texte.currentrow])>
</cfloop>

您的查询是一个结构,您可以像另一个结构一样引用它,您可以使用内置的 currentrow 属性来引用结构中的 currentrow

重新阅读您的问题后,看起来上下文存储在模块表中?那你就可以了。无论哪种方式,您都应该尽可能避免使用评估,尽管这会起作用。

<cfloop query="texte">
  <cfloop query="modulesquery">
    <cfset variables[trim(texte.label)] = trim(modulesquery[content][modulesquery.currentrow])>
 </cfloop>
</cfloop>
于 2012-09-30T15:08:51.793 回答
0

我只关注这一点:

问题:是否可以在 MySQL 中存储“动态变量”并在输出这些变量时检索它们的基础值?

我可能会做的是将文本存储为文件,并将文件的路径存储在数据库中。然后,当您需要让 CF 处理文件时——这是解析变量的唯一方法——只需从数据库中提取路径,并将文件包含在该路径中。

如果文本需要进入数据库,那么您需要从数据库中读取它,将其写入文件,然后包含该文件。要处理 CF 变量,它需要由 CF 处理,为此,您需要将文件传递给 ColdFusion。而已。

但是,到处写文件并在每次需要时都包含它们会很慢,因为文件需要在运行之前进行编译,并且编译过程相对较慢。

解决此问题的方法是仅在文件更改时写入文件,而不是每次需要时写入。在大多数网站上,数据的读取频率比更改的频率高出几个数量级,这取决于网站的工作方式。

于 2012-09-30T18:07:39.230 回答