1

i の値を渡して .gsp ページを作成したいのですが、その方法

def save = {
    def billingPeriodInstance = new BillingPeriod(params)
    DatabaseImpController obj= new DatabaseImpController()

   int i = obj.setbillPeriod()

   if(i== 1){
        render(view: "create")
   }
}
4

1 に答える 1

8

ただ使う

render(view: "create", model:[i: i])
于 2011-02-08T13:12:02.873 に答える