How to preview uploaded image instantly with paperclip in ruby on rails

后端 未结 2 1295
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-31 12:46

Basically, what I want to accomplish is to allow user to preview their uploaded image before they submit it.

In the controller, i have

def index
    @tem         


        
2条回答
  •  执笔经年
    2021-01-31 13:17

    this worked in my case:

      $('.file-input').on 'change', (event) ->
        $('.image').attr('src', URL.createObjectURL(this.files[0]))
    

提交回复
热议问题