古詩詞大全網 - 個性簽名 - 如何將html中form表單數字簽名以保證其安全性?

如何將html中form表單數字簽名以保證其安全性?

可以用struts中的信牌。DEMO: DocumentTypeDataBean documentTypeDataBean = ctrl.setDataBean( documentTypeForm, "insert");

String oldkey = documentTypeForm.getType_task_id().toString();

String result = ctrl.copeAddDocumentType(documentTypeDataBean,oldkey);//增加操作

List documentTypeList = ctrl.getAllDocumentType(request, null);

request.setAttribute("documentTypeList", documentTypeList);

request.setAttribute("documentTypeForm", null);

this.saveToken(request);//保存信牌

return mapping.findForward("list.documenttype");

也可以不用, 原理是壹樣的。傳個唯壹的值 , 在後臺中作判斷。