我在我的 laravel 应用程序中使用 trumbowyg 所见即所得编辑器。在编辑器中,虽然已经安装了上传插件,但不会显示上传选项。
问问题
1934 次
1 回答
2
您需要确保在调用插件时包含一些内容。
btns: ['viewHTML',
'|', 'formatting',
'|', 'btnGrp-design',
'|', 'link',
'|', 'image',
'|', 'btnGrp-justify',
'|', 'btnGrp-lists',
'|', 'horizontalRule']
您还需要自定义图像按钮以包含下拉菜单
btnsDef: {
// Customizables dropdowns
image: {
dropdown: ['insertImage', 'upload', 'base64'],
ico: 'insertImage'
}
},
我的完整示例如下
$('textarea').trumbowyg({
autogrow: true,
fullscreenable: false,
btnsDef: {
// Customizables dropdowns
image: {
dropdown: ['insertImage', 'upload', 'base64'],
ico: 'insertImage'
}
},
btns: ['viewHTML',
'|', 'formatting',
'|', 'btnGrp-design',
'|', 'link',
'|', 'image',
'|', 'btnGrp-justify',
'|', 'btnGrp-lists',
'|', 'horizontalRule']
});
于 2015-10-15T14:59:25.170 回答