我正在尝试在我的 Rails 应用程序中使用史诗编辑器,但问题是尽管我指定了它的 ID,但它看不到我的文本区域
这里是配置
<script type="text/javascript">
var opts = { container: 'epiceditor'
, basePath: ''
, textarea: 'my-edit-area'
, clientSideStorage: true
, localStorageName: 'epiceditor'
, useNativeFullscreen: true
, file: { name: null
, defaultContent: ''
, autoSave: 100 // Set to false for no auto saving
}
, theme: { base: '<%= asset_path("base/epiceditor.css") %>'
, preview: '<%= asset_path("preview/github.css") %>'
, editor: '<%= asset_path("editor/epic-light.css") %>'
}
, focusOnLoad: false
, shortcut: { modifier: 18 // alt keycode
, fullscreen: 70 // f keycode
, preview: 80 // p keycode
}
, string: { togglePreview: 'Toggle Preview Mode'
, toggleEdit: 'Toggle Edit Mode'
, toggleFullscreen: 'Enter Fullscreen'
}
, parser: typeof marked == 'function' ? marked : null
, autogrow: false
, button: { fullscreen: true
, preview: true
, bar: "auto"
}
}
var editor = new EpicEditor(opts).load();
</script>
这是视图文件
<div id='epiceditor'>
<%= text_area_tag(f['name'],f['value'], size: '20x5', class: 'form-control', id: 'my-edit-area') %>
</div>
在控制台中它给了我这个
未捕获的类型错误:无法读取 null 的属性“值”