我正在使用visualize.js来呈现jasper报告,我正在使用图像报告,但它没有显示图表。以下是我的代码
visualize({
server:"http://************/reportservice",
auth:{
name:"*****",
password:"****"
}
},function(v){
var report=v.report({
server:"http://***********/reportservice",
resource:"/organizations/Organization*******Projectboard3",
container:"#container",
});
report.params({
"projectKey_2":"5001082",
})
report.run();
},function(err){
alert(err.message);
}
);
我是否需要包含Visualize.js以外的任何j来渲染图表。请帮我。在此先感谢
答案 0 :(得分:0)
我找到了答案,我们需要将参数作为数组提供
{["projectKey_2":"5001082"]}