Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proxy enumerate. #196

Open
Nwaj opened this issue Jun 25, 2018 · 2 comments
Open

Proxy enumerate. #196

Nwaj opened this issue Jun 25, 2018 · 2 comments

Comments

@Nwaj
Copy link

Nwaj commented Jun 25, 2018

Второй пример должен выводить name, surname по условию задачи. Но выводит все свойства, верно ли это?
https://learn.javascript.ru/proxy#enumerate

@RAYDENFilipp
Copy link
Contributor

@Nwaj Это неверно. Данный подраздел из исходного файла был удален, однако на сайте все еще висит.
Я переделал этот "устаревший способ" с помощью действующего ownKeys:
Plunker

    'use strict';
    
    let user = {
      name: "Ilya",
      surname: "Kantor",
      _version: 1,
      _secret: 123456
    };
    
    let proxy = new Proxy(user, {
      ownKeys: function (target) {//вместо enumerable
        let props = Object.keys(target).filter(function (prop) {
        return prop[0] != '_';
        });
    
      return props;//здесь нужно вернуть весь массив
      }
    });
    
    // отфильтрованы свойства, начинающиеся с _
    for(let prop in proxy) {
      alert(prop); // Выведет свойства user: name, surname
    }

@iliakan , Вы удалили устаревший метод в файле на ГитХаб, но, увы, на сайте он по-прежнему присутствует.

@iliakan
Copy link
Owner

iliakan commented Sep 1, 2018

Обновление с гитхаба будет чуть позже, сейчас большой рефакторинг кода.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants