Skip to main content

All Questions

0 votes
0 answers
42 views

try to send an array of objects that has another array of objects from vu to laravel controller

Im trying to create a test, each test has an image(file) and one or more questions, and each question has an (file) and one or more choices... each questions has questions_text and questions_file and ...
Mohamed Annajar's user avatar
1 vote
1 answer
213 views

Recover item id in v-for loop

I am trying to build response to comment. Here is what I am trying to do: I take the comment ID from the v-for loop and put it in a span that is invisible. Then I want to recover the value of id in '...
anis's user avatar
  • 905
0 votes
1 answer
967 views

Vue.js and laravel problem with delete method

Hi im new in website develpoment and i have a problem in my project(laravel, vue.js, mysql), i created the delete api and it works well when i used postman but in the Vue file when use the axios....
King JoSeph's user avatar
0 votes
1 answer
51 views

how to call variable outside axios.get? it gives me no result

this is my sample code and i need to pass the data inside the axios.get. i need to get the value of this.var1 from where i console.log(this.var1) newModalMultiple(){ this.var1=0; for( i = ...
Imman's user avatar
  • 1
0 votes
1 answer
548 views

Fix for chained select vue js component

I have 2 select dropdown boxes, one for home types and another for duration, i have been able to fetch data into the hometype dropdown but the duration dropdown is not fetching data. Anyone, please ...
Zee4real's user avatar
0 votes
1 answer
511 views

Vue v-for no data display using Laravel and Vuejs

Im using v-for and axios for displaying data but when I run my website, the data wont show but there are no errors in the console and in my vue developer tool, I can see the data in it. Can someone ...
draw134's user avatar
  • 1,197
0 votes
1 answer
439 views

Vue Component not showing store data

I am building a trivia maker. I am currently working on the edit page for a question. The edit component, named EditQAForm, grabs the question and answers for that particular question and populates ...
Toti Cuervo's user avatar
5 votes
2 answers
3k views

How to access `PromiseValue` in axios `response` in VueJs

I am trying to show client information details in the modal. After clicking @click="showDetails(props.row.id)". I am using axios.get in method and returning the data. Now, It's returning the data as ...
Rashed Hasan's user avatar
  • 3,761
0 votes
1 answer
3k views

How can I using put method to update data on the vue component?

My ajax axios like this : let formData = new FormData() formData.append('file', user.avatar) formData.append('selected_data', JSON.stringify(user)) axios.post('/member/profile/update', formData, ...
moses toh's user avatar
  • 13.2k