你好,我是Griffon框架的新手,我想在我的应用程序中添加登录功能。下面是我的模型,视图和控制器:
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验证插件您必须处理validateable(模型实例)的errors
属性。此属性包含可用于向用户显示信息的消息列表,但是您必须选择哪些消息,因为可能有很多消息。你当前的代码离这个只有一步之遥,因为它已经触发了验证;现在您只需要使用消息并在UI中显示它们。