怎么判断kindeditor上传图片和文件的格式
1个回答
展开全部
官网都有很详细的说明文档呢
KindEditor默认提供ASP、ASP.NET、PHP、JSP上传程序,这些程序是演示程序,建议不要直接在实际项目中使用。 如果您确定直接使用本程序,使用之前请仔细确认相关安全设置。
// ASPKindEditor.ready(function(K) { K.create('#textarea_id', { uploadJson : '../asp/upload_json.asp', fileManagerJson : '../asp/file_manager_json.asp', allowFileManager : true });});// ASP.NETKindEditor.ready(function(K) { K.create('#textarea_id', { uploadJson : '../asp.net/upload_json.ashx', fileManagerJson : '../asp.net/file_manager_json.ashx', allowFileManager : true });});// JSPKindEditor.ready(function(K) { K.create('#textarea_id', { uploadJson : '../jsp/upload_json.jsp', fileManagerJson : '../jsp/file_manager_json.jsp', allowFileManager : true });});
POST参数
imgFile: 文件form名称
dir: 上传类型,分别为image、flash、media、file
返回格式(JSON)
//成功时{ "error" : 0, "url" : "www.example.com/path/to/file.ext"}//失败时{ "error" : 1, "message" : "错误信息"}
KindEditor默认提供ASP、ASP.NET、PHP、JSP上传程序,这些程序是演示程序,建议不要直接在实际项目中使用。 如果您确定直接使用本程序,使用之前请仔细确认相关安全设置。
// ASPKindEditor.ready(function(K) { K.create('#textarea_id', { uploadJson : '../asp/upload_json.asp', fileManagerJson : '../asp/file_manager_json.asp', allowFileManager : true });});// ASP.NETKindEditor.ready(function(K) { K.create('#textarea_id', { uploadJson : '../asp.net/upload_json.ashx', fileManagerJson : '../asp.net/file_manager_json.ashx', allowFileManager : true });});// JSPKindEditor.ready(function(K) { K.create('#textarea_id', { uploadJson : '../jsp/upload_json.jsp', fileManagerJson : '../jsp/file_manager_json.jsp', allowFileManager : true });});
POST参数
imgFile: 文件form名称
dir: 上传类型,分别为image、flash、media、file
返回格式(JSON)
//成功时{ "error" : 0, "url" : "www.example.com/path/to/file.ext"}//失败时{ "error" : 1, "message" : "错误信息"}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询