0

我在coldfusion cfscript中尝试做的是迭代请求变量集合并进行一些评估,我可以在PHP中轻松完成,但在转换为coldfusion cfscript时遇到问题,因为我似乎无法构建动态if语句

PHP

for ( $i=0 ; $i<count($aColumns) ; $i++ )
    {
        if ( $_GET['bSearchable_'.$i] == "true" && $_GET['sSearch_'.$i] != '' )
        {
            //If there was no where clause
            if ( $sWhere == "" )
            {
                $sWhere = "WHERE ";
            }
            else
            {
                $sWhere .= " AND ";
            }

我试过这个,出错了

for (i=1; i<= iColumnsLen; i++) {   
  if (rc.bSearchable_&i EQ true and rc.sSearch&i NEQ '') {
            if ( sWhere EQ "" )
            { sWhere = " WHERE "; }
            else
            { sWhere &= " AND ";}
  }         
}

还尝试将 if 语句行更改为此,相同

if (rc.bSearchable_+i EQ true and rc.sSearch+i NEQ '') {

最后我尝试构建一个字符串并使用它,我知道它不起作用但我想我会试一试,错误是无法将 var 转换为布尔值

for (i=1; i<= iColumnsLen; i++) {
 var iterator = "rc.bSearchable_"&i&" EQ true and rc.sSearch_"&i&" NEQ ''";
  if (#iterator#) {

这是我希望有问题地完成的没有迭代的静态冷融合

  if (rc.bSearchable_1 EQ true and rc.sSearch_1 NEQ '') {
            if ( sWhere EQ "" )
            { sWhere = " WHERE "; }
            else
            { sWhere &= " AND ";}
  }         
  if (rc.bSearchable_2 EQ true and rc.sSearch_2 NEQ '') {
            if ( sWhere EQ "" )
            { sWhere = " WHERE "; }
            else
            { sWhere &= " AND ";}
  } 
  if (rc.bSearchable_3 EQ true and rc.sSearch_3 NEQ '') {
            if ( sWhere EQ "" )
            { sWhere = " WHERE "; }
            else
            { sWhere &= " AND ";}                                     
  }

任何帮助将不胜感激

4

1 回答 1

3

正如 Leigh 所说,您只需要像这样引用动态列:

rc["bSearchable_" & i] 
rc["sSearch_" & i]
于 2013-06-04T15:25:44.980 回答