Luckysheet导入

来自Luckysheet官方demo

<div id="lucky-mask-demo" style="position: absolute;z-index: 1000000;left: 0px;top: 0px;bottom: 0px;right: 0px; background: rgba(255, 255, 255, 0.8); text-align: center;font-size: 40px;align-items:center;justify-content: center;display: none;">Downloading</div>
	<p style="text-align:center;"> 
	导入:<input style="font-size:16px;" type="file" id="Luckyexcel-demo-file" name="Luckyexcel-demo-file" change="demoHandler" /> 或加载远程xlsx文件: 
	<select style="height: 27px;top: -2px;position: relative;" id="Luckyexcel-select-demo"> 
		<option value="">查看案例</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/money-manager-2.xlsx">Money Manager.xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/Activity%20costs%20tracker.xlsx">Activity costs tracker.xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/House%20cleaning%20checklist.xlsx">House cleaning checklist.xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/Student%20assignment%20planner.xlsx">Student assignment planner.xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/Credit%20card%20tracker.xlsx">Credit card tracker.xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/Blue%20timesheet.xlsx">Blue timesheet.xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/Student%20calendar%20%28Mon%29.xlsx">Student calendar (Mon).xlsx</option>
		<option value="https://minio.cnbabylon.com/public/luckysheet/Blue%20mileage%20and%20expense%20report.xlsx">Blue mileage and expense report.xlsx</option>
	</select> 
<script src="https://cdn.jsdelivr.net/npm/luckyexcel@latest/dist/luckyexcel.umd.js"></script>
function demoHandler(){
			    let upload = document.getElementById("Luckyexcel-demo-file");
			    let selectADemo = document.getElementById("Luckyexcel-select-demo");
			    let downlodDemo = document.getElementById("Luckyexcel-downlod-file");
			    let mask = document.getElementById("lucky-mask-demo");
			    if(upload){
			        
			        window.onload = () => {
			            
			            upload.addEventListener("change", function(evt){
			                var files = evt.target.files;
			                if(files==null || files.length==0){
			                    alert("No files wait for import");
			                    return;
			                }
			
			                let name = files[0].name;
			                let suffixArr = name.split("."), suffix = suffixArr[suffixArr.length-1];
			                if(suffix!="xlsx"){
			                    alert("Currently only supports the import of xlsx files");
			                    return;
			                }
			                LuckyExcel.transformExcelToLucky(files[0], function(exportJson, luckysheetfile){
			                    
			                    if(exportJson.sheets==null || exportJson.sheets.length==0){
			                        alert("Failed to read the content of the excel file, currently does not support xls files!");
			                        return;
			                    }
			                    console.log(exportJson, luckysheetfile);
			                    window.luckysheet.destroy();
			                    
			                    window.luckysheet.create({
			                        container: 'luckysheet', //luckysheet is the container id
			                        showinfobar:false,
									lang:'zh',
			                        data:exportJson.sheets,
			                        title:exportJson.info.name,
			                        userInfo:exportJson.info.name.creator
			                    });
			                });
			            });
			
			            selectADemo.addEventListener("change", function(evt){
			                var obj = selectADemo;
			                var index = obj.selectedIndex;
			                var value = obj.options[index].value;
			                var name = obj.options[index].innerHTML;
			                if(value==""){
			                    return;
			                }
			                mask.style.display = "flex";
			                LuckyExcel.transformExcelToLuckyByUrl(value, name, function(exportJson, luckysheetfile){
			                    
			                    if(exportJson.sheets==null || exportJson.sheets.length==0){
			                        alert("Failed to read the content of the excel file, currently does not support xls files!");
			                        return;
			                    }
			                    console.log(exportJson, luckysheetfile);
			                    mask.style.display = "none";
			                    window.luckysheet.destroy();
			                    
			                    window.luckysheet.create({
			                        container: 'luckysheet', //luckysheet is the container id
									lang:'zh',
			                        showinfobar:false,
			                        data:exportJson.sheets,
			                        title:exportJson.info.name,
			                        userInfo:exportJson.info.name.creator
			                    });
			                });
			            });
			
			            downlodDemo.addEventListener("click", function(evt){
			                var obj = selectADemo;
			                var index = obj.selectedIndex;
			                var value = obj.options[index].value;
			
			                if(value.length==0){
			                    alert("Please select a demo file");
			                    return;
			                }
			
			                var elemIF = document.getElementById("Lucky-download-frame");
			                if(elemIF==null){
			                    elemIF = document.createElement("iframe");
			                    elemIF.style.display = "none";
			                    elemIF.id = "Lucky-download-frame";
			                    document.body.appendChild(elemIF);
			                }
			                elemIF.src = value;
			            });
			        }
			    }
			}
			demoHandler();
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值