根据ROYYID老师第五周讲的WEB集成应用,做便当拼接时,引链接如下: http://localhost:37799/WebReport/ReportServer?op=fs_load&cmd=sso&fr_name=KXH&password=123456 {"fail":true} 但是用此用户名与密码是登录成功的。 另外在运行index.html 显示登录出错,地址是:[object Object]/parsererrorError: jQuery191018571711744671404_1546074318943 was not called,感觉接口拼接有问题,这个jQuery191018571711744671404_1546074318943是怎么产生的? function loginfr() { var username=document.getElementById("username").value; //获取username var password=document.getElementById("password").value; var init_url="http://localhost:37799/WebReport/ReportServer"; jQuery.ajax({ url:init_url+"?op=fs_load&cmd=sso", dataType: "jsonp", data:{"fr_username":username,"fr_password":password}, jsonp:"callback", timeout:2000, success:function(data){ if(data.status==="success"){ alert("sucessful"); } else if (data.status==="fail"){ alert("用户密码错误!!!!"); } }, error:function(){ alert(" 超时或服务器其他错误 "); } }); } 请给予支持什么原因? |