這裏是我的數據庫表:通過表單提交更新數據庫中的表中的單個值
id | account_name | account_number | account_type | address | email | ifsc_code | is_default_account | phone_num | User -----+--------------+----------------+--------------+---------+------------------------------+-----------+--------------------+-------------+---------- 201 | helloi32irn | 55265766432454 | Savings | | [email protected] | 5545 | f | 98654567876 | abc 195 | hello | 55265766435523 | Savings | | [email protected] | 5545 | t | 98654567876 | axyz 203 | what | 01010101010101 | Current | | [email protected] | 6123 | f | 09099990 | abc
表單提交的觀點,只張貼一個參數,它在我的情況是name =「激活「,其對應於表格中的」is_default_account「列。 我想將「is_default_account」的值從「t」更改爲「f」。例如,在表中,對於account_name「hello」,它是「t」。並且我想停用它,即使它成爲「f」並激活已通過表格發送的其他任何其他
Bladmiral,我需要Playframework代碼,即控制器來完成它。 – Khekhekhe