1
在Grails項目中,我有一個命令對象來驗證提交的表單。這個命令obj。也有自定義驗證器。數據使用jQuery ajax($ .post)提交。使用Ajax實現Grails命令對象驗證
我的問題是我怎麼現在可以將數據發送與jQuery Ajax映射到Command對象中列出的屬性?
例如:
$.post('comment/save', {id: id, title: title});
,然後在控制器:
def save(saveCommand cmd){
if (!cmd.validate()){
...
}
}
class saveCommand {
Comment comment_id // maps to: params.comment_id send with ajax
String title // maps to: params.title send with ajax
// constraints
// validators
}