Skip to content
Advertisement

How can i get an ID from a select multiple using Element?

I have a select for persons assigned to a proyect, so i need to send the ID from the object selected to a function i tried:

JavaScript

Array persons:

JavaScript

Method

JavaScript

The pid (person id) is undefined and i can’t find a solution for my case, i will appreciate help and comments.

Advertisement

Answer

You are facing what is referenced in Vue.js documentation as change detection caveats.

Tl;dr

Due to the nature of javascript, Vue.js can’t watch for changes inside objects. You have to tell him explicitly that some changes occured by using the provided method Vue.set(object, key, value). You can give a try by using it, or avoiding it by, for example, doing so:

Template

JavaScript

Script

JavaScript

It’s just a way to avoid the problem of detection caveat, but if I understand what you are trying to attempt, then it will probably be sufficient.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement