这是解构赋值,res 为一个对象,直接把对象中的tempFilePage 属性定义为变量,变量修饰符为 const 。var data = {};data.name = "hello";let {name} = data;console.log(name); // hello