我正试图找到一种从CoffeeScript文件自动生成Javascript的方法,就像你在Sinatra中那样容易做到这样:
require 'sinatra'
require 'coffee-script'
get '/*.js' do
name = params[:splat][0]
file_name = File.join("#{name}.coffee")
pass unless File.exists?(file_name)
content_type(:js, :charset => 'utf-8')
coffee(IO.read(file_name))
end
这样,在我的代码中,即使我只有.js
个文件,我也可以像.coffee
个文件一样存在。与使用客户端CoffeeScript编译器相比,它不那么特别且没有错误......
答案 0 :(得分:2)
谢谢leucos !!!
我虽然关于Rack中间件,但想知道是否没有更多的“ramaze”解决方案(就像与天生一样)。
无论如何,这很有效,而且很棒!
以下是您的代码的修改版本:
require 'coffee-script'
# An attempt to allow Ramaze to generate Js file from coffee files
module Rack
class BrewedCoffee
def initialize(app, options = {})
@app = app
@lookup_path = options[:lookup_path].nil? ? [__DIR__] : options[:lookup_path]
end
def call(env)
name = env['PATH_INFO']
# Continue processing if requested file is not js
return @app.call(env) if File.extname(name) != '.js'
coffee_name = "#{name[0...-3]}.coffee"
@lookup_path.each do |p|
coffee_file = File.join(p, coffee_name)
next unless File.file?(coffee_file)
response_body = CoffeeScript.compile(File.read(coffee_file))
headers = {}
headers["Content-Type"] = 'application/javascript'
headers["Content-Length"] = response_body.length.to_s
return [200, headers, [response_body]]
end
@app.call(env)
end
end
end
我清理了一些东西并删除了Ramaze依赖,这样它就是纯粹的Rack中间件:)。
您可以使用它来调用:
m.use Rack::BrewedCoffee, :lookup_path => Ramaze.options.roots
再见 安德烈亚斯
答案 1 :(得分:1)
处理此问题的最佳方法可能是编写自己的机架中间件,并使用如下所示。您可能需要使用某种缓存,因此每次调用时都不会从.js
重建.coffee
个文件。
require 'ramaze'
class BrewedCoffee
def initialize(app)
@app = app
end
def call(env)
name = env['PATH_INFO']
# Continue processing if requested file is not js
return @app.call(env) if name !~ /\.js$/
# Caching & freshness checks here...
# ...
# Brewing coffee
name = name.split('.')[0..-2].join('.') + ".coffee"
Ramaze.options.roots.each do |p|
file_name = File.join("#{name}.coffee")
next unless File.exists?(file_name)
response_body = coffee(IO.read(file_name))
headers["Content-Type"] = 'application/javascript'
headers["Content-Length"] = response_body.length.to_s
[status, headers, response_body]
end
@app.call(env)
end
end
class MyController < Ramaze::Controller
map '/'
...
end
Ramaze.middleware! :dev do |m|
m.use(BrewedCoffee)
m.run(Ramaze::AppMap)
end
Ramaze.start
这很快被黑了,需要更多的爱,但你明白了。而你可能不想在制作中这样做,只是预先制作你的咖啡,或者你的系统管理系统会遇到麻烦:D