帝国CMS excel导入导出插件(帝国CMS7.2 / 7.5 UTF-8)
插件 by ecms 2019-07-25 11:15:48

 excel导入导出1.png

excel导入导出2.png

excel导入导出3.png

 

第一种:用户名已存在:

[CropImg]excel导入导出4.png

 

第二种:用户名正常注册成功:

excel导入导出5.png

 

同理,可用于任意表导入导出,示例demo为导出会员表,可自行扩展

 

示例:会员表导出:

JavaScript Code复制内容到剪贴板
  1. /** 
  2.  * 导出会员数据 
  3.  * @returns {boolean} 
  4.  */  
  5. function exportAll() {  
  6.     var fields = {  
  7.         "userid":"用户ID",  
  8.         "username":"登录帐号",  
  9.         "groupname":"用户分组",  
  10.         "truename":"真实姓名",  
  11.         "phone":"手机号码",  
  12.         "saytext":"备注"  
  13.     };  
  14.     $.post("/e/extend/xxx/api.php<?=$ecms_hashur['whehref']?>", {  
  15.             "func""export",  
  16.             "sql""select * from member",   //执行的sql语句  
  17.             "fields": JSON.stringify(fields),  
  18.             "title":"全部会员导出统计列表"  
  19.         },  
  20.         function (res) {  
  21.             window.open(res.info);   
  22.         }, "json");  
  23.     return false;  
  24. }  

 

 

2019.8.11 更新导入再次简化使用方式

2019.7.29 更新前台会员中心支持导入导出功能模板

 

 

本文来自于:http://www.yoyo88.cn/note/extend/443.html

Powered by yoyo苏ICP备15045725号