【仅供内部供应商使用,不提供对外解答和培训】

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

1. 概述

1.1 版本

报表服务器版本JAR 包版本插件版本
10.02018-07-31V1.0

...

3. 插件示例

在报表中新增按钮,并添加事件。js代码如下:




Code Block
languagejs
linenumberstrue
collapsetrue
$.ajax({
	url: "http://localhost:8075/webroot/decision/url/api/data",
	type: "POST",
	contentType: "application/json;charset=utf-8",
	dataType: "json",
	data: JSON.stringify({
		"report_path": "GettingStarted.cpt",
		"datasource_name": "ds1",
		"page_number": 1,
		"page_size": 100,
		"parameters": [{
			"name": "地区",
			"type": "String",
			"value": "华北"
		}]
	}),
	success: function(data) {
		alert("导出成功" + data.toString());
	},
	error: function() {
		alert("baocuo");
	}
});


示例模板:

示例模板.cpt

以上。