得到后台数据,按照名称,循环赋值给表单

2019-08-14 10:22:52来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

<!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>

 


原文链接:https://www.cnblogs.com/cengjingdeshuige/p/11276641.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:JavaScript Date 日期属性和方法

下一篇:JavaScript学习笔记