web前端调试时 浏览器报错 type:Status report

问题描述

web前端调试时 浏览器报错 type:Status report

错误是这样的:

具体出现的时机:点击界面中的一个按钮,onClick监听:

 function exportReport()
        {
            var diag = new Dialog();
            diag.Width = 540;
            diag.Height = 350;
            diag.Title = "导出报表到本地";
            diag.URL = "";
            diag.InvokeElementId = "exportReportDialog";
            diag.show();
        }

exportReportDialog的div:

<div id="exportReportDialog" style="display:none;">
    <div class="bt" style="margin:10px 0">导出报表到本地</div>
    <table cellpadding="0" cellspacing="0" width="100%" style="margin-top:30px; margin-left:20px; font-size:14px; line-height:40px">
        <tr>
            <td align="right">用&nbsp;&nbsp;户&nbsp;&nbsp;名:</td>
            <td align="left" style="padding-left:10px;">
                <input id="adfasdf" class="input" type="text" value="" style="width:200px" disabled/>
            </td>
        </tr>
    </table>
</div>

点击按钮后,dialog会显示一下,然后一闪而过,就报前面说的问题了。

解决方案

你的Dialog来自哪个js文件?

解决方案二:

404,没有找到对应的页面

解决方案三:

我擦,原来是点击的那个按钮里多设置了个东西:

查看 提示报错的网页 的地址栏,发现 ”/JRHTMLServlet.do?type=pdf“ 字样,然后找到问题。

解决方案四:

找不到页面啊,怎么弄

时间: 2024-08-01 12:46:25

web前端调试时 浏览器报错 type:Status report的相关文章

vs2013-VS2013下opencv环境配置,调试时一直报错,

问题描述 VS2013下opencv环境配置,调试时一直报错, 我把图片放到cpp格式的文件夹下,按F5,一直报错,就是下面几张图,求各位大神指点迷津 解决方案 图片路径是不是有问题,debug一下,有指针的地方记得判断是否为空,并打印日志 解决方案二: 你这个是指针异常了,你的代码读取图片等有问题,没有正确初始化

springmvc-spring使用JUnit时autowired报错,controller里面autowired可以的

问题描述 spring使用JUnit时autowired报错,controller里面autowired可以的 试了好多办法还是不行,不知道哪里配错了..麻烦大神帮看一下 异常信息: SEVERE: Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5f98de7] to p

spring和mybatis集成时总报错 麻烦帮忙看下什么原因

问题描述 spring和mybatis集成时总报错 麻烦帮忙看下什么原因 项目请求数据的时候报Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.business.dao.system.AdminMapper.selectByPrimaryKey麻烦大神帮忙看下这是啥原因,找了好久不知道

用VS2005运行.NET程序,编译通过,但运行时页面报错:HTTP 500 - 内部服务器错误。查看OUTPUT,显示什么No symbols loaded,大家帮我。

问题描述 用VS2005运行.NET程序,编译通过,但运行时页面报错:HTTP500-内部服务器错误.查看OUTPUT,显示什么Nosymbolsloaded,大家帮我啊.很奇怪,之前都是好的,可以正常运行调试.就上午发生了装了一个登录一个网站的安全认证的东西.叫什么softToken.请教高手们.output里的具体内容如下:'WebDev.WebServer.EXE'(Managed):Loaded'C:WINDOWSassemblyGAC_32mscorlib2.0.0.0__b77a5c

ssh整合-spring整合hibernate做测试时没有报错,当三个整合时启动就报错啦,求大神指点!!

问题描述 spring整合hibernate做测试时没有报错,当三个整合时启动就报错啦,求大神指点!! 报的错误org.springframework.scheduling.quartz.JobMethodInvocationFailedException: Invocation of method 'ecsUnsigned' on target class [class $Proxy17] failed; nested exception is org.springframework.tran

使用commons-fileupload时启动报错

问题描述 使用commons-fileupload时启动报错 使用commons-fileupload时启动报java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory错误,最开始都是可以使用的,后来改了下配置文件的配置就开始报错,生成的target目录下是有那个配置文件的 在maven已经导入了commons-fileupload包: <dependency> <groupId>com

spring4.14+hibernate4.3整合,web运行正常,junit测试报错;

问题描述 spring4.14+hibernate4.3整合,web运行正常,junit测试报错: 之前web启动的时候也报这个错误,然后在web.xml里面加了这个filter,就好了. 可是现在用junit测试,没办法读取web.xml里面的配置,所以还报了这个错, 别问我为什么要junit测试,就是想知道 junit测试的时候这种情况怎么解决. 下面附代码 SpringOpenSessionInViewFilterorg.springframework.orm.hibernate4.sup

asp.net-页面打开时没有报错,点击别的链接后会报错~

问题描述 页面打开时没有报错,点击别的链接后会报错~ 在 NDQE.Application.Client.QNZX.QNZX_Index.Page_Load(Object sender, EventArgs e) 位置 F:项目1ProjectNDQENDQEApplicationClientQNZXQNZX_Index.aspx.cs:行号 17 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, E

jboss-使用JPA @ManyToMany做双向关联时mappedBy报错

问题描述 使用JPA @ManyToMany做双向关联时mappedBy报错 提示:In attribute 'testA' the ""mapped by"" attribute 'testB' has an invalid mapping type for this relationship. 代码如下:@Entity(name=""testa"")public class TestA { Long id; List te