我正在使用引导文件输入插件来管理用户头像: http: //plugins.krajee.com/file-input/
我正在使用这个 JS 代码初始化插件:
$("#contact_photo").fileinput({
showCaption: false, // The "1 file selected non-editable text field"
showRemove: false, // The "Remove" button
showUpload: false, // The "Upload" button
showBrowse: false, // The "Browse ..." button
browseOnZoneClick: true,
initialPreview: "{{ lead.contact_photo.url }}",
initialPreviewConfig: [
{
fileType: 'image',
previewAsData: true,
}
],
removeFromPreviewOnError: true,
overwriteInitial: true, // Whether to replace the image loaded originally if it exists
allowedFileExtensions: ['jpg', 'jpeg', 'png'],
allowedPreviewTypes: ['image'],
defaultPreviewContent: '<h3>No Contact Photo</h3><h6>Drag or click Browse...</h6>',
maxFileSize: 10000, // 10 MB
maxFileCount: 1,
msgErrorClass: 'alert alert-block alert-danger',
elErrorContainer: '#kv-avatar-errors-1',
});
问题是如果initialPreview
设置了键,初始预览将包含左下角的“拖动”按钮(带有 4 个方向箭头的图标,这对我的设置没有任何作用)。如何删除它?
我已经尝试showDrag: false
在文件输入设置中进行设置,initialPreviewConfig
但没有成功。