介面獲取值後賦值 ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>介面獲取值後賦值</title> </head> <body> <script> let response = { // 後臺傳遞的json name: 'shui', age: 18, sex: 'boy' } let form = {} // 前端表單 Object.keys(response).forEach(key => form[key] = response[key]) // 按照名稱一一賦值 console.log(form) </script> </body> </html>