I want to be able to make an ajax call and to use the results returned to generate the options of a drop-down using vue.js. I can do this:
<select v-model="selected">
<option v-for="option in options" v-bind:value="option.value">
{{ option.text }}
</option>
</select>
<span>Selected: {{ selected }}</span>
.js file
new Vue({
el: '...',
data: {
selected: 'A',
options: [
{ text: 'One', value: 'A' },
{ text: 'Two', value: 'B' },
{ text: 'Three', value: 'C' }
]
}
})
But I don't want to have my options hard coded but instead to come from the ajax call.
Ajax call looks something like this:
function pullEmployees(){
var eventOwnerId = $('#eventOwner').val();
var eventOwnerName = $('#eventOwner :selected').text();
$.ajax({
url: "employees.cfm",
data: {
eventOwnerId: eventOwnerId,
eventOwnerName: eventOwnerName,
method : "updateOwners"
},
success: function(results) {
// results will have a list of objects where each objects has two properties (ID and Value)
}
});
}
I am really new in vue.js and I would appreciate if someone can help.
In the example below, I am simulating your ajax call with a setTimeout
. Basically you want to capture the result of new Vue()
in a variable and then set the options
property of that Vue with the results of your ajax call.
I also updated your template to reflect that the options you are returning have the structure {ID, text}
.
console.clear()
let app = new Vue({
el: '#app',
data: {
selected: 'A',
options: []
}
})
function pullEmployees(){
let options = [
{ text: 'One', ID: 'A' },
{ text: 'Two', ID: 'B' },
{ text: 'Three', ID: 'C' }
];
setTimeout(() => app.options = options, 1000)
}
pullEmployees()
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div id="app">
<select v-model="selected">
<option v-for="option in options" v-bind:value="option.ID">
{{ option.text }}
</option>
</select>
<span>Selected: {{ selected }}</span>
</div>
However all of this can be done inside Vue. It doesn't need to be done outside.
let app = new Vue({
el: '#app',
data: {
selected: 'A',
options: []
},
methods:{
pullEmployees(){
var eventOwnerId = $('#eventOwner').val();
var eventOwnerName = $('#eventOwner :selected').text();
$.ajax({
url: "employees.cfm",
data: {
eventOwnerId: eventOwnerId,
eventOwnerName: eventOwnerName,
method : "updateOwners"
},
success: results => this.options = results
});
}
},
mounted(){
this.pullEmployees()
}
})
If eventOwner
is part of the Vue as well you could just get that value as a data property from Vue.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With