Rails - How to send an image from a controller

前端 未结 2 1541
眼角桃花
眼角桃花 2020-12-24 08:06

in my rails app, I need to pass back a image.

I have a 1x1.gif tracking pixel in my route as follows:

 match \"/_ctrack.gif\" => \"email_tracking_         


        
2条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-24 08:47

    Wouldn't be better to use send_file instead?

    send_file Rails.root.join("public", "file.gif"), type: "image/gif", disposition: "inline"
    

提交回复
热议问题