我最近接手的项目中经常让做出打印和导出统计图和表格

首先说打印,打印如果用echarts做出来的图表,打印的时候,要借助jquery的打印插件。

打印插件:

 <script src="../Plugin/jquery-print/jquery.jqprint-0.3.js"></script>

然后进行打印操作

 <div id="printPopup" class="modal-block mfp-hide">
<section class="panel">
<header class="panel-heading">
<h2 class="panel-title">数据打印</h2>
</header>
<div class="panel-body">
<div class="modal-wrapper">
<div class="modal-text">
<div class="form-group">
<label class="col-xs-12 col-md-3 control-label">统计数据:</label>
<div class="col-xs-12 col-md-9">
<select class="form-control mb-md printTableData">
<option value="0">请选择数据表格</option>
<option data-id="" value="1">招商引资项目汇总统计表</option>
<option data-id="" value="2">新签招商引资项目汇总统计表</option>
<option data-id="" value="3">在陕投资合同项目汇总表</option>
<option data-id="" value="4">在陕投资合同项目分类表(按地域)</option>
<option data-id="" value="5">在陕投资合同项目分类表(按行业)</option>
<option data-id="" value="6">招商引资项目明细统计表</option>
</select>
<label for="fullname" class="errorHide"></label>
</div>
</div>
</div>
</div>
</div>
<footer class="panel-footer">
<div class="row">
<div class="col-md-12 text-right">
<button type="button" class="btn btn-default popupCancel">取消</button>
<button type="button" id="printConfirm" class="btn btn-primary"><i class="fa fa-check"></i>确定</button>
</div>
</div>
</footer>
</section>
</div>

打印js:

 //触发打印弹窗
function printDatable() {
$(".pintTable").click(function () {
//打印弹窗初始化
printLizationVal();
//打印初始化事件
printFuntion();
confirmPopup("#printPopup", "inline");
$("#printConfirm").click(function () {
if (tableEven($(".printTableData"), "请选择打印的数据表格")) {
if ($(".printTableData").val() == "1" || $(".printTableData").val() == 1) {
$(".printDtable").show();
$("#Company").show();
$("#navTabes").hide();
$("#headerTable").hide();
$.magnificPopup.close();
html2canvas($("#CompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#CompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "2" || $(".printTableData").val() == 2) {
$("#navTabes").hide();
$(".printDtable").show();
$("#headerTable").hide();
$("#Company").hide();
$("#NCompany").show();
$.magnificPopup.close();
html2canvas($("#NCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#NCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "3" || $(".printTableData").val() == 3) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#SCompany").show();
$.magnificPopup.close();
html2canvas($("#SCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#SCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "4" || $(".printTableData").val() == 4) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#AddSCompany").show();
$.magnificPopup.close();
html2canvas($("#AddSCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#AddSCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "5" || $(".printTableData").val() == 5) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#HYSCompany").show();
$.magnificPopup.close();
html2canvas($("#HYSCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#HYSCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "6" || $(".printTableData").val() == 6) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#SureCompany").show();
$.magnificPopup.close();
html2canvas($("#SureCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#SureCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
} else {
tableEven($(".printTableData"), "请选择打印的数据表格");
}
})
}) }
//打印弹窗初始化
function printLizationVal() {
//初始化默认样式
$("#printPopup").find(".has-error").removeClass();
$("#printPopup").find(".error").removeClass().text("");
$(".printTableData").val("0");
}
//打印初始化事件
function printFuntion() {
$(".printTableData").change(function () {
tableEven($(".printTableData"), "请选择打印的数据表格");
})
}
//打印页面上的内容
function preview() {
$(".printBtn").unbind("click").click(function () {
$(".printDtable").hide();
$("#tabContDiv").jqprint();
})
}

导出html:

 <div id="exportPopup" class="modal-block mfp-hide">
<section class="panel">
<header class="panel-heading">
<h2 class="panel-title">数据导出</h2>
</header>
<div class="panel-body">
<div class="modal-wrapper">
<div class="modal-text">
<div class="form-group">
<label class="col-xs-12 col-md-3 control-label">统计数据:</label>
<div class="col-xs-12 col-md-9">
<select class="form-control mb-md exportTableData">
<option value="0">请选择数据表格</option>
<option data-id="" value="1">招商引资项目汇总统计表</option>
</select>
<label for="fullname" class="errorHide"></label>
</div>
</div>
</div>
</div>
</div>

导出js:

 function exportPopupTable() {
//导出1图
$("#exportTable").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup", "inline");
//提交ajax
$(".exportConfirm1").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportSummaryStatistics",
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu1").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu1").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu1").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu1").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu1").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu1").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu1").find(".enterseProperty").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出2图
$("#exportTable2").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup2", "inline");
//提交ajax
$(".exportConfirm2").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportNewlySignedProjectSummaryTable",
//所属产业
"industryTypeFatherId": $.trim($("#tu2").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu2").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu2").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu2").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu2").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu2").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu2").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu2").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu2").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu2").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出3图
$("#exportTable3").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup3", "inline");
//提交ajax
$(".exportConfirm3").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProjectsProvinceTable",
//所属产业
"industryTypeFatherId": $.trim($("#tu3").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu3").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu3").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu3").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu3").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu3").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu3").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu3").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu3").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu3").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出4图
$("#exportTable4").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup4", "inline");
//提交ajax
$(".exportConfirm4").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProjectsClassification",
//所属产业
"industryTypeFatherId": $.trim($("#tu4").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu4").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu4").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu4").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu4").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu4").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu4").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu4").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu4").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu4").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出5图
$("#exportTable5").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup5", "inline");
//提交ajax
$(".exportConfirm5").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProjectsIndustry",
//所属产业
"industryTypeFatherId": $.trim($("#tu5").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu5").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu5").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu5").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu5").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu5").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu5").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu5").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu5").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu5").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出6图
$("#exportTable6").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup6", "inline");
//提交ajax
$(".exportConfirm6").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProject",
//所属产业
"industryTypeFatherId": $.trim($("#tu6").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu6").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu6").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu6").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu6").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu6").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu6").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu6").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu6").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu6").find(".Projectypes").val()),
//签约类型
"projectContractType": $.trim($("#tu6").find(".ServiceMark").val()),
//签约状态
"projectContractState": $.trim($("#tu6").find(".Contractstatus").val()),
//形象进度
"projectScheduleImage": $.trim($("#tu6").find(".Imageprogress").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
}
 //导出弹窗初始化
function exportLizationVal() {
//初始化默认样式
$("#exportPopup").find(".has-error").removeClass();
$("#exportPopup").find(".error").removeClass().text("");
$(".exportTableData").val("0");
}
//导出初始化事件
function exportFuntion() {
$(".exportTableData").change(function () {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
})
}

运用jquery做打印和导出操作的更多相关文章

  1. 个人永久性免费-Excel催化剂功能第50波-批量打印、导出PDF、双面打印功能

    在倡导无纸化办公的今天,是否打印是一个碍眼的功能呢,某些时候的确是,但对于数据的留存,在现在鼓吹区块链技术的今天,仍然不失它的核心价值,数据报表.单据打印出来留存,仍然是一种不可或缺的数据存档和防篡改 ...

  2. Jquery网页元素里面的操作以及JSON

    如果网页里面有复选框,下拉列表Jquery怎么来操作,主要是怎么选取数据,就是取选中值,第二个是设置哪一项选中 <script src="jquery-1.11.2.min.js&qu ...

  3. JavaScript jQuery 中定义数组与操作及jquery数组操作

    首先给大家介绍javascript jquery中定义数组与操作的相关知识,具体内容如下所示: 1.认识数组 数组就是某类数据的集合,数据类型可以是整型.字符串.甚至是对象Javascript不支持多 ...

  4. 在PHP中如何实现在做了么个操作后返回到指定页面

    我们经常会碰到类似用户在没有登录的情况下进行提问.评论,需要用户登录后返回刚才浏览的网页,这种功能用cookie保存当前url地址来实现.我用的是jquery,读者需要懂点jquery中的ajax请求 ...

  5. 用Jquery做一个时间日期选择器

    今天我们就用Jquery做一个时间日期选择器,当打开网页时,文本框里面显示的是当前的日期,点击文本框可以出现年.月.日的下拉菜单,并且可以选择,会根据年份的选择判断是否是闰年,从而改变二月的天数,闰年 ...

  6. jQuery 选择器 筛选器 样式操作 文本操作 属性操作 文档处理 事件 动画效果 插件 each、data、Ajax

    jQuery jQuery介绍 1.jQuery是一个轻量级的.兼容多浏览器的JavaScript库. 2.jQuery使用户能够更方便地处理HTML Document.Events.实现动画效果.方 ...

  7. VB中Excel 2010的导入导出操作

    VB中Excel 2010的导入导出操作 编写人:左丘文 2015-4-11 近来这已是第二篇在讨论VB的相关问题,今天在这里,我想与大家一起分享一下在VB中如何从Excel中导入数据和导出数据到Ex ...

  8. JavaScript jQuery 中定义数组与操作及jquery数组操作 http://www.jb51.net/article/76601.htm

    首先给大家介绍javascript jquery中定义数组与操作的相关知识,具体内容如下所示: 1.认识数组 数组就是某类数据的集合,数据类型可以是整型.字符串.甚至是对象Javascript不支持多 ...

  9. jquery css事件编程 位置 操作

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

随机推荐

  1. Python学习笔记(2.1)函数参数练习

    关键字参数 和 命名关键字参数 # -*- coding: utf-8 -*- def print_scores(**kw): print(' Name Score') print('-------- ...

  2. css纯数字或字母换行

    #div { word-wrap:break-word; word-break:break-all; }

  3. 重构改善既有代码设计--重构手法16:Introduce Foreign Method (引入外加函数)&& 重构手法17:Introduce Local Extension (引入本地扩展)

    重构手法16:Introduce Foreign Method (引入外加函数)你需要为提供服务的类增加一个函数,但你无法修改这个类.在客户类中建立一个函数,并以第一参数形式传入一个服务类实例. 动机 ...

  4. Centos7环境下消息队列之ActiveMQ实战

    Activemq介绍 对于消息的传递有两种类型: 一种是点对点的,即一个生产者和一个消费者一一对应: 另一种是发布/订阅模式,即一个生产者产生消息并进行发送后,可以由多个消费者进行接收. JMS定义了 ...

  5. 【CodeForces】578 C. Weakness and Poorness

    [题目]C. Weakness and Poorness [题意]给定含n个整数的序列ai,定义新序列为ai-x,要使新序列的最大子段和绝对值最小,求实数x.n<=2*10^5. [算法]二分| ...

  6. JavaScript中innerText和innerHTML的区别

    案例 <html> <head> <meta http-equiv="Content-Type" content="text/html;ch ...

  7. MQTT协议及推送服务(二)

    MQTT简介 MQTT全称叫做Message Queuing Telemetry Transport,意为消息队列遥测传输,是IBM开发的一个即时通讯协议.由于其维护一个长连接以轻量级低消耗著称,所以 ...

  8. 2017ACM暑期多校联合训练 - Team 6 1008 HDU 6103 Kirinriki (模拟 尺取法)

    题目链接 Problem Description We define the distance of two strings A and B with same length n is disA,B= ...

  9. 天梯赛 L2-010 排座位 (并查集)

    布置宴席最微妙的事情,就是给前来参宴的各位宾客安排座位.无论如何,总不能把两个死对头排到同一张宴会桌旁!这个艰巨任务现在就交给你,对任何一对客人,请编写程序告诉主人他们是否能被安排同席. 输入格式: ...

  10. 天梯赛 L2-20 功夫传人 (深搜)

    一门武功能否传承久远并被发扬光大,是要看缘分的.一般来说,师傅传授给徒弟的武功总要打个折扣,于是越往后传,弟子们的功夫就越弱-- 直到某一支的某一代突然出现一个天分特别高的弟子(或者是吃到了灵丹.挖到 ...