我在使用 grap 来建立 api 的时候想调用 send_file 这个函数传递文件到本地,碰到几个问题,代码如下 module Blog class API < Grape::API resource :weblogs do get '/sendfile' do send_file("File/it/wrapper_pic/0310053100010.jpg",:disposition=>"inline") end end end end
调用这个 API 的时候提示说在 API 这个 CLASS 中没有定义 send_file 这个函数,这个函数不是标准的 ruby 函数么,不可以用么?还是说我需要引入某个文件。谢谢