-
Notifications
You must be signed in to change notification settings - Fork 1
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
Отмеченные Email-ы #7
Conversation
Добавляю преподавателя (@ShGKme) для код-ревью. |
Сейчас только понял, что неправильно использовал computed. Он должен вычислять на основании реактивных переменных, а у меня видоизменяет. Так подумал из за того, что о нем идет речь в задании. Тут нужно было указать watch либо watchEffect верно? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Принято
const emailMarked = computed(() => { | ||
return email.value.map((mail) => { | ||
if (mail.indexOf(search.value) !== -1 && search.value !== "") { | ||
return { | ||
mail: mail, | ||
marked: true, | ||
} | ||
} | ||
return { | ||
mail: mail | ||
} | ||
}) | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Сейчас только понял, что неправильно использовал computed. Он должен вычислять на основании реактивных переменных, а у меня видоизменяет. Так подумал из за того, что о нем идет речь в задании. Тут нужно было указать watch либо watchEffect верно?
computed
действительно должен вычислять результат на основе других переменных и ни в коем случае не изменять другие данные.
Но ваш computed
корректный. Он вычисляет новый массив объектов на основе email
и search
переменных, не изменяя в процессе вычисления ни одну из них.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
По мелочи:
mail.indexOf(search.value) !== -1
в современном JS можно заменить наmail.includes(search.value)
- Если создаётся массив объектов, лучше сохранять его структуру, и во втором случае вместо
{ mail }
указывать явно marked:{ mail, marked: false }
No description provided.