1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 19:22:21 +00:00

Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages

This commit is contained in:
ruanyf 2017-11-01 16:27:06 +08:00
commit e845e10525
2 changed files with 3 additions and 3 deletions

View File

@ -404,9 +404,9 @@ export {add as default};
// export default add;
// app.js
import { default as xxx } from 'modules';
import { default as foo } from 'modules';
// 等同于
// import xxx from 'modules';
// import foo from 'modules';
```
正是因为`export default`命令其实只是输出一个叫做`default`的变量,所以它后面不能跟变量声明语句。

View File

@ -181,7 +181,7 @@ let proto = new Proxy({}, {
});
let obj = Object.create(proto);
obj.xxx // "GET xxx"
obj.foo // "GET foo"
```
上面代码中,拦截操作定义在`Prototype`对象上面,所以如果读取`obj`对象继承的属性时,拦截会生效。