开发者

What is a good approach for dealing with the uploading of image sequences

开发者 https://www.devze.com 2023-01-24 22:03 出处:网络
I am implementing the back end for an online store.The store receives new products periodically.Each product comes with a sequence of images for a 3D rotation effect on the w开发者_运维问答ebsite.What

I am implementing the back end for an online store. The store receives new products periodically. Each product comes with a sequence of images for a 3D rotation effect on the w开发者_运维问答ebsite. What is a good approach for uploading these images onto the web store? I'm currently using a web form but uploading each image using a separate upload form element feels like a waste of time. These sequences can have anywhere from 12-50 frames. Any suggestions for a better way?


If you want a minimum amount of change from your current solution you can add the multiple attribute to your file input box, and update your back-end to support it.

You can then select multiple files at once with a modern browser, for instance Firefox 3.6. Try:

<input type="file" multiple=""/>
0

精彩评论

暂无评论...
验证码 换一张
取 消