本帖最后由 KearneyKang 于 2018-1-18 14:27 编辑
这是传入两个参数的写法:网页端的输入的形式就是如下的模式:http://jsonplaceholder.typicode.com/comments?id=5& &postId=1
表达式的写法如下:
- ="jsondoc=http://jsonplaceholder.typicode.com/comments?id=" & Parameters!UserId.Value & "&postId=" & Parameters!PostId.Value & ";schemadata={ ""$schema"": ""http://json-schema.org/draft-04/schema#"", ""type"": ""array"", ""items"": { ""type"": ""object"", ""properties"": { ""postId"": { ""type"": ""integer"" }, ""id"": { ""type"": ""integer"" }, ""name"": { ""type"": ""string"" }, ""email"": { ""type"": ""string"" }, ""body"": { ""type"": ""string"" } }, ""required"": [ ""postId"", ""id"", ""name"", ""email"", ""body"" ] }}"
复制代码 下面是压缩文件是一个双参数传递的一个报表模板,可供参考:
|