Error with StimulSoft v2015.2 (StiMvcMobile)

本文关键字:StiMvcMobile v2015 with StimulSoft Error | 更新日期: 2023-09-27 18:22:07

我在我的mvc应用程序中使用stimulsoft 2015 v.2,我使用stimvcmobile进行设计报告当我用下面的代码运行我的应用程序时,我收到了一些错误:

 <head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    @Html.Stimulsoft().RenderMvcMobileDesignerScripts()
</head>
<body>
    <div>
        @Html.Stimulsoft().StiMvcMobileDesigner(new StiMvcMobileDesignerOptions()
        {
            ActionGetReportTemplate = "GetReportTemplate",
            ActionGetReportSnapshot = "GetReportSnapshot"
         })
    </div>
</body>

错误:CS1502:与"Stimulsoft.Report.MvcMobile.StiMvcHelper.StiMvcMobileDesigner(string)"匹配的最佳重载方法具有一些无效参数

我的Resharper建议将.ToString()添加到Helper的末尾,并删除上面的错误,但报告设计器不工作,为什么??请帮忙??我的代码:

 @Html.Stimulsoft().StiMvcMobileDesigner(new StiMvcMobileDesignerOptions()
        {
            ActionGetReportTemplate = "GetReportTemplate",
            ActionGetReportSnapshot = "GetReportSnapshot"
        }.ToString())

浏览器控制台中的错误为:Uncaught SyntaxError: Unexpected token .

Error with StimulSoft v2015.2 (StiMvcMobile)

添加组件名称作为第一个参数。

... StiMvcMobileDesigner("StiMvcMobileViewer1", new StiMvcMobileDesignerOptions()