所以我想在Web请求上动态生成一个MIDI文件。从Java世界中出现,我期待一些事情的发展。
class MidisController < ApplicationController
before_filter :set_content_type
def set_content_type
@headers["Content-Type"] = "audio/midi; charset=utf-8"
end
def show
midi_data = get_midi_data
response.write(midi_data)
end
但API说,远离响应对象。有什么想法吗?