0
JSPのradiobuttonのonchangeリスナーのようなものを探しています。私はこの例のように使用しています: https://www.tutorialspoint.com/springmvc/springmvc_radiobutton.htm 誰でもコントローラーのラジオボタンのイベントをキャッチする方法を知っていますか?RadionButtonからのJSPキャッチングイベント
JSPのradiobuttonのonchangeリスナーのようなものを探しています。私はこの例のように使用しています: https://www.tutorialspoint.com/springmvc/springmvc_radiobutton.htm 誰でもコントローラーのラジオボタンのイベントをキャッチする方法を知っていますか?RadionButtonからのJSPキャッチングイベント
Springでこれを行うデフォルトの方法はありません。なぜこれをやりたいのですか?
基本的にAJAXコールを使用して、選択したボタンのデータを残りのコントローラに送信します。この擬似コードに類似したもの。
jQuery(document).ready(function($) {
$("#your-buttons").change(function(event) {
event.preventDefault();
var data = formname.your-buttons.value;
$.ajax({
type : "POST",
contentType : "application/json",
url : "your/api/url",
data : JSON.stringify(data),
dataType : 'json',
success : function(data) {
display(data);
},
error : function(e) {
display(e);
}
});
});
});
残りのコントローラでは、他のイベントと同じように処理するだけで済みます。
@RequestMapping(value = "/your/api/url", method = RequestMethod.POST)
public String whatever(.....) {
// ...
}