gpt4 book ai didi

javascript - Summernote 不会编辑其内容

转载 作者:搜寻专家 更新时间:2023-10-30 22:52:08 24 4
gpt4 key购买 nike

我正在与 summernote 作斗争。我将 Vue 与 laravel 和 Inspinia 主题 ( https://wrapbootstrap.com/theme/inspinia-responsive-admin-theme-WB0R5L90S ) 结合使用。

我已经加载了 .css 和 .js 文件。我的问题是,summernote 不会编辑它的内容。工具栏中的按钮不起作用。

这是我的 vue 组件:

<style>
</style>
<template>
<div>
<div class="ibox-content no-padding">
<div class="summernote" v-el:summernote>
{{ infoText }}
</div>

</div>
</div>
</template>
<script>
export default {
data() {
return {
infoText: ''
}
},

ready() {
this.setupSummernote();
},

methods: {
setupSummernote() {
$(this.$els.summernote).summernote({
height: 250,
toolbar: [
['style', ['style']],
['font', ['bold', 'italic', 'underline', 'clear']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['table', ['table']]
],
onChange: function(contents, editable) {
this.infoText = contents;
console.log(contents, editable);
}.bind(this)
});
}
}
}
</script>

它确实显示了带有工具栏和样式化内容的 summernote 编辑器,但它不会触发 onChange 事件。有人知道我做错了什么吗?

一些显示奇怪 css 的屏幕: Creating table Font style selection

感谢您的努力!

最佳答案

你summernote的回调配置是错误的。

这个:

 onChange: function(contents, editable) {
this.infoText = contents;
console.log(contents, editable);
}.bind(this)

应该是这样的:

callbacks: {
onChange: function(contents, editable) {
this.infoText = contents;
console.log(contents, editable);
}.bind(this)
}

关于javascript - Summernote 不会编辑其内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38180923/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com