无法调用 deniedVisibility() - 从未看到 pid 的连接 - 未导航到 Html 页面
Posted
技术标签:
【中文标题】无法调用 deniedVisibility() - 从未看到 pid 的连接 - 未导航到 Html 页面【英文标题】:Cannot call determinedVisibility() - never saw a connection for the pid - Not navigate to the Html page 【发布时间】:2015-07-24 06:15:46 【问题描述】:下面是我在成功登录我的 android 应用程序后打开 home.html 页面的代码。但是当我单击登录按钮时,它会加载相同的 index.html 页面(它没有打开 home.html
)。
function check(form)
//the following code checkes whether the entered userid and password are matching
if(form.password.value == "moleac123")
if(form.remember_me.checked)
window.localStorage["password_remember"] = "moleac123";
var date_to_remember = new Date().getTime();
window.localStorage["date_remember"] = date_to_remember.toString();
$.mobile.pageLoadErrorMessage = "";
// window.open('home.html'); //opens the target page while Id & password matches
window.location="home.html";
else
alert("Invalid Password"); //displays error message
$.mobile.pageLoadErrorMessage = "";
// window.open('index.html');
window.location="index.html";
我的 logcat 出现以下错误。 (注意我的查询移动版本是 1.3.2,我尝试升级到 1.4.5 仍然出现同样的问题)
Error:
D/JsMessageQueue﹕ Set native->JS mode to null D/CordovaWebViewImpl﹕ onPageDidNavigate(file:///android_asset/www/home.html)
W/BindingManager﹕ Cannot call determinedVisibility() - never saw a connection for the pid: 20994
D/CordovaWebViewImpl﹕ onPageFinished(file:///android_asset/www/home.html)
W/BindingManager﹕ Cannot call determinedVisibility() - never saw a connection for the pid: 20994
W/BindingManager﹕ Cannot call determinedVisibility() - never saw a connection for the pid: 20994
注意-这在 Android 4.1.X 版本中运行良好,在 Android5.0 中存在此问题
请告诉我如何解决这个问题。
【问题讨论】:
你有解决办法吗? Android Webview: Cannot call determinedVisibility() - never saw a connection for the pid 【参考方案1】:你试过this吗?在该帖子的 logcat 中,有一些关于 BindingManager﹕ Cannot call determinedVisibility()
的内容,所以也许建议的解决方案在这里也有帮助?
【讨论】:
以上是关于无法调用 deniedVisibility() - 从未看到 pid 的连接 - 未导航到 Html 页面的主要内容,如果未能解决你的问题,请参考以下文章
Typescript中的“无法调用类型缺少调用签名的表达式”?
错误 TS2349:无法调用其类型缺少调用签名的表达式。类型 ' ; ' 没有兼容的调用签名