Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
222 views
in Technique[技术] by (71.8m points)

vue.js - Show recently added record at top in vuejs

There is a image upload functionality in my vuejs application. The image upload works good and the uploaded recorded is also displayed. But this recently added record get displayed at last in my list. On page refresh it appears at top.

I want to show the recently uploaded image at top as soon as after successful upload.

I have been trying really hard for this since 2 days and couldn't find the solution.

Please help. Vuejs version is 2

question from:https://stackoverflow.com/questions/65647232/show-recently-added-record-at-top-in-vuejs

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

basically if I'm correct what you want is to push new images to the images array, for this just use unshift()

something like this


this.images.unshift('url_or_info_of_the_new_image')


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...