5_对象属性简化

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        var name = "Pning";
        var professional = "JavaWeb开发";
        //原本的一种写法
        var info_1 = {
            name:name,
            professional:professional,
            go:function(){
                console.log(info_1);
            }
        };
        info_1.go();
        //简化为:
        //1、如果key的值与变量名的值一直,只需要写一次即可
        //2、如果属性的value是一个函数方法,那可以把:function删去,只留下()即可
        var info_2 = {
            name:name,
            professional:professional,
            go(){
                console.log(info_2);
            }
        };
        info_2.go();
    </script>
</body>
</html>

实际案例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <form>
        账号:<input type="text" id="username"/><br/>
        密码:<input type="password" id="password"/><br/>
        <input type="button" value="登录" id="login" />
    </form>

    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
	<script>
		document.querySelector("#login").onclick = function(){
            var username  = document.getElementById("username").value;
            var password  = document.getElementById("password").value;
            var params = {username,password};
            console.log(params);
			axios.post("localhost:8080/login",params)
			.then(function(response){
				console.log(response);
			},function(err){
				console.log(err);
			})
		}
	</script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值