Griffon更新模型和控制器视图

时间:2015-07-11 11:56:33

标签: swing groovy griffon grails-validation

您好我是Griffon Framework的新手我想在我的应用程序中添加Login功能。跟随我的模型,视图和控制器:

SignInModel.groovy

@ArtifactProviderFor(GriffonModel)
@griffon.transform.Validateable
class SignInModel {
    @Bindable String userName
    @Bindable String password
static CONSTRAINTS = {
    userName(blank: false,nullable: false)
    password(blank: false, nullable: false)
}

}

SignInView.groovy

@ArtifactProviderFor(GriffonView)

类SignInView {

FactoryBuilderSupport builder
SignInModel model
SignInController controller
void initUI() {
builder.with {
        application{
frame(title: 'Login', size: [330, 230],
                    show: true,resizable:false,locationRelativeTo: null,
                    defaultCloseOperation: EXIT_ON_CLOSE) {
                panel(constraints: BorderLayout.CENTER,
                        border: compoundBorder([emptyBorder(10),titledBorder('Welcome To Tracker')])) {
tableLayout() {
                        tr {
                            td {
                                label(text: "Username")
                            }
                            td {
                                textField(id: "usernameTxt", columns: 15, text: bind(target: model, 'userName', mutual: true))
                            }
                        }
                        tr{
                            td{
                                label(text:"Password")
                            }
                            td{
                                passwordField(id:"passwordTxt",columns:15,text:bind(target:model,'password',mutual:true))

                            }
                        }
                    }
                }
panel(constraints: BorderLayout.SOUTH) {
                    button text: 'Login', actionPerformed: {
                        model?.getErrors()?.clearAllErrors()
                        controller.signIn()
                    }
                }
}
            }
        }
}
}

}

SignInController.groovy

@ArtifactProviderFor(GriffonController)

类SignInController {

SignInModel model
SignInView view
void signIn(){
    try {
if (model?.validate()) {
            println("No Error Found..")
        } else {
    println("Error Found..")
        }
}catch (Exception ex){
        println("Exception Generated:>>>>>>>>>>>>>>"+ex?.getMessage())
    }
}

}

我想更新我的SignIn视图如果用户名和密码为空,并显示错误消息。我能够在我的模型中收到错误消息,但我的视图没有更新,请帮助我。

@注意:我添加了griffon验证插件

1 个答案:

答案 0 :(得分:1)

您必须处理validateable的errors属性(模型实例)。此属性包含可用于向用户显示信息的消息列表,但您必须选择哪些消息,因为可能有很多消息。您当前的代码距离此一步,因为它已经触发了验证;现在您只需要使用消息并在UI中显示它们。