sql >> データベース >  >> RDS >> Mysql

以前の入力に基づいてデータベースから入力値を取得します

    データベースからデータをリクエストするには、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)
        })
    }
    

    お役に立てば幸いです。




    1. 月ごとにグループ化し、特定の月に値がない場合にゼロを返す方法は?

    2. 動的SQLの結果はSQLストアドプロシージャの一時テーブルになります

    3. Objective-CのMySQLコマンド

    4. Oracleでマイナス/プラス記号を使用して数値をフォーマットする方法