如何将速度变量的值打印到隐藏的HTML输入中

时间:2013-09-10 14:32:28

标签: html velocity

在我搜索期间,我想对此有一个提示:

如何传递值:

${lyear}-${key}

到下面的值输入类型:

<input type="hidden" name="month2" value="" />

例如:

<input type="hidden" name="month2" value=#set(${lyear}-${key}) />

我尝试了这个,但它不起作用!

如果你有建议给我。

所以我工作了:

<input type="hidden" name="month2" value=${lyear}-${displayMonth} />

并且:

<input type="hidden" name="month2" value="${lyear}-${displayMonth}" />

要在导航器中进行查询,请执行以下操作:

  

本地主机:8080 /审计院/ mon_compte.html显示= affilies_periode&安培; MONTH1 = 01&安培;年= 2013&安培; MONTH2 =%24 *的 {年权} - Décembre*

但我想查询一下:

  

本地主机:8080 /后台/ vendeurs / remuneration.html月= 2013-08

感谢您提出任何意见

P.S。我的表格代码:

#set ( $listKeys = [ '01' , '02' , '03' , '04' , '05' , '06' , '07' , '08' , '09' , '10' , '11' , '12' ] )

#set ( $listMois = { '01' : "Janvier" , '02' : "Février" , '03' : "Mars" , '04' : "Avril" , '05' : "Mai" , '06' : "Juin" , '07' : "Juillet" , '08' : "Août" , '09' : "Septembre" , '10' : "Octobre" , '11' : "Novembre" , '12' : "Décembreuujikjk" } )


                <fieldset class="search">


                   <form method="get" action="/comptes/mon_compte.html" style="border-top:none;"><p class="alignTop">

                   <p>

                        <span>Afficher vos détails de rémunération du mois de </span>

                        <input type="hidden" name="display" value="affilies_periode" />

                        <select name="month1" id="month1">
                            #foreach($key in $listKeys)
                                #if($listMois.get($key))
                                    #set ($displayMonth = $listMois.get($key))
                                    <option value="$key" #if($month == $key) selected #end >$displayMonth</option>
                                #end
                            #end
                        </select>

                        <select name="year" id="year">
                            #foreach($lyear in $util.listYears)
                                <option value="$lyear" #if($year == $lyear) selected #end >$lyear</option>
                            #end
                        </select>

                        ##"${R}-01"
                        ##set($begin = "${R}-01")

                        ##<input type="hidden" name="month2" value=#set(${lyear}-${key}) />


                        ##ih
                        <input type="hidden" name="month2" value=${lyear}-${displayMonth} />

                        ##set($month = $lyear-$displayMonth)

                        ##<input type="hidden" name="month2" value="${lyear}-${displayMonth}" />

                        ##<input type="hidden" name="month2" value="#set(${lyear}-${key})" />

                        <input type="submit" value="&nbsp;" class="button27 btnOk hand" style="margin-right:0;"/>               

                        <br/>
                        <br/>
                        <span>ou</span>
                        <br/>
                        <br/>                   
                        <span><td><a href="/comptes/mon_compte.html?display=affilies">Revenir à la page de rémunération globale</a></td>



</span>
                  </p>
               </form> 
</fieldset>

1 个答案:

答案 0 :(得分:3)

#set用于为Velocity变量赋值。要打印变量的当前值,只需写入变量名称:

<input type="hidden" name="month2" value="${lyear}-${key}" />

你必须明白Velocity是一种模板语言,这意味着它将代码混合在另一种标记语言中(通常是HTML,但它可以像纯文本一样简单,也可以像PDF一样复杂) ,在执行Velocity代码并打印变量(插入)后,只剩下其他标记。因此,尝试#set某些变量不会以任何方式改变结果,并且它肯定不会为HTML属性设置值,因为Velocity根本不知道或不关心HTML。