我目前正在尝试使用ExecJS为我正在处理的产品之一运行Handlebars(注意:我知道handlebars.rb gem真的很酷,而且我已经使用过一段时间了但是有问题要搞定它安装在Windows上,所以我尝试另一种自制的解决方案。)
我遇到的一个问题是每次“调用”ExecJS之间都没有保留Javascript上下文。
这里是我实例化@js属性的代码:
class Context
attr_reader :js, :partials, :helpers
def initialize
src = File.open(::Handlebars::Source.bundled_path, 'r').read
@js = ExecJS.compile(src)
end
end
这是一个显示问题的测试:
let(:ctx) { Hiptest::Handlebars::Context.new }
it "does not keep context properly (or I'm using the tool wrong" do
ctx.js.eval('my_variable = 42')
expect(ctx.js.eval('my_variable')).to eq(42)
end
现在我跑的时候:
rspec spec/handlebars_spec.rb:10 1 ↵
I, [2015-02-21T16:57:30.485774 #35939] INFO -- : Not reporting to Code Climate because ENV['CODECLIMATE_REPO_TOKEN'] is not set.
Run options: include {:locations=>{"./spec/handlebars_spec.rb"=>[10]}}
F
Failures:
1) Hiptest::Handlebars Context does not keep context properly (or I'm using the tool wrong
Failure/Error: expect(ctx.js.eval('my_variable')).to eq(42)
ExecJS::ProgramError:
ReferenceError: Can't find variable: my_variable
注意:我在“exec”而不是“eval”中遇到了同样的问题。
这是一个愚蠢的例子。我真的想要它来运行“Handlebars.registerPartial”以及稍后的“Handlebars.compile”。但是当试图在模板中使用部分时,它会失败,因为先前注册的那个丢失了。
请注意,我找到了一种解决方法,但我发现它非常难看:/
def register_partial(name, content)
@partials[name] = content
end
def call(*args)
@context.js.call([
"(function (partials, helpers, tmpl, args) {",
" Object.keys(partials).forEach(function (key) {",
" Handlebars.registerPartial(key, partials[key]);",
" })",
" return Handlebars.compile(tmpl).apply(null, args);",
"})"].join("\n"), @partials, @template, args)
end
有关如何解决问题的想法吗?
答案 0 :(得分:2)
在evals之间仅保留您在调用ExecJS.compile
时创建的上下文。您想保留的任何内容都需要成为初始编译的一部分。