<!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></body>
<script>
function upload(params) {
let config = {
type: "*.jepg,*.png",
size: 10000,
};
config = { ...config, ...params };
console.log(config);
}
// upload() //不传参数,就用默认的
upload({ size: 99 });
</script>
</html>
11-19
820
