我有一个由 Opal 翻译成 JS 的 Ruby 函数,它一直运行良好,但突然它不再工作了。JS 控制台给了我这个错误信息
Opal.const_get_relative is not a function
原始的 Ruby 代码是这样的
Document.ready? do
Element.find('#button_id').on :click do
翻译成这个
return $send(Opal.const_get_relative($nesting, 'Document'), 'ready?', [], (TMP_1 = function(){var self = TMP_1.$$s || this, TMP_2;
return $send(Opal.const_get_relative($nesting, 'Element').$find("#button_id"), 'on', ["click"], (TMP_2 = function(){var self = TMP_2.$$s || this, TMP_3, postcode_value = nil, blokouderling = nil, content = nil, wijk = nil, naam = nil, email = nil, $writer = nil;
知道出了什么问题吗?