データベースからデータをリクエストするには、AJAX呼び出しを使用する必要がありますが、データベースからデータを取得するのは彼であるため、バックエンド言語(PHP、Pythonなど)も必要です。jQueryの例:
submitForm = function(url, element) {
const dataForm = element.serializeArray();
let data = {'id': dataForm[0]}
$.ajax({
method:'POST',
url: url, // Your url to send the datas (the id in your view for example) at your backend
data: data,
}).then(response () {
console.log(response.rate)
})
}
お役に立てば幸いです。