kindeditor4.X 调用insertfile.js问题

发布于 2021-11-24 19:44:56 字数 2050 浏览 825 评论 2

我要把插入文件,文件说明那块去掉,所以把pluginsinsertfileinsertfile.js文件中的那段代码注释掉,发现没用,最后我把insertfile.js文件删掉,然后重启tomcat服务器,发现居然还能加载插入文件功能,还是有文件说明,这是为什么,难道kindeditor插入文件功能不是调用inserfile.js文件吗???


KindEditor.plugin('insertfile', function(K) {
	var self = this, name = 'insertfile',
		allowFileUpload = K.undef(self.allowFileUpload, true),
		allowFileManager = K.undef(self.allowFileManager, false),
		formatUploadUrl = K.undef(self.formatUploadUrl, true),
		uploadJson = K.undef(self.uploadJson, self.basePath + 'php/upload_json.php'),
		extraParams = K.undef(self.extraFileUploadParams, {}),
		filePostName = K.undef(self.filePostName, 'imgFile'),
		lang = self.lang(name + '.');
	self.plugin.fileDialog = function(options) {
		var fileUrl = K.undef(options.fileUrl, 'http://'),
			//fileTitle = K.undef(options.fileTitle, ''),
			clickFn = options.clickFn;
		var html = [
			'<div style="padding:20px;">',
			'<div class="ke-dialog-row">',
			'<label for="keUrl" style="width:60px;">' + lang.url + '</label>',
			'<input type="text" id="keUrl" name="url" class="ke-input-text" style="width:160px;" />  ',
			'<input type="button" class="ke-upload-button" value="' + lang.upload + '" />  ',
			'<span class="ke-button-common ke-button-outer">',
			'<input type="button" class="ke-button-common ke-button" name="viewServer" value="' + lang.viewServer + '" />',
			'</span>',
			'</div>',
			//title   我注释掉了下面的这段代码,去掉文件说明和文本框
			//'<div class="ke-dialog-row">',
			//'<label for="keTitle" style="width:60px;">' + lang.title + '</label>',
			//'<input type="text" id="keTitle" class="ke-input-text" name="title" value="" style="width:160px;" /></div>',
			//'</div>',
			//form end
			'</form>',
			'</div>'
			].join('');




如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兮颜 2021-11-28 05:19:02

需要在你引用的页面加入这句

<script charset="utf-8" src="你的js存放目录/kindeditor/plugins/insertfile/insertfile.js"></script>

眼泪淡了忧伤 2021-11-28 04:06:16

上传的文件放到临时目录,HTML代码提交到服务器,提取文件URL,和临时目录文件比对,把多余的稳健删掉,剩下的移动到正式目录。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文