POST https://localhost:26143/skypectoc/v1/pnr/parse net::ERR_CONNECTION_REFUSED
POST https://localhost:26143/skypectoc/v1/pnr/parse net::ERR_CONNECTION_REFUSED
我在我的 polymer 网站上使用 DISQUS,我得到了大约三百个错误,我检查了 polymer-project.org,它有同样的问题。
POST https://localhost:26143/skypectoc/v1/pnr/parse net::ERR_CONNECTION_REFUSED
我的网站::
大约有三百个请求!
我这样使用 disqus-commnets 元素:
<core-header-panel mode="waterfall-tall" tallClass="medium-tall" >
<div class="core-header ">{{response[0].title}}</div>
<div layout horizontal center-justified flex class="contentcontainer">
<div flex?="{{!phoneScreen}}"></div>
<div vertical flex four style="background:#ffffff;box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19); color: #555;">
<div flex id="content" class="markdown-body"></div>
<div flex><disqus-comments shortname="myName"></disqus-comments></div>
</div>
<div flex?="{{!phoneScreen}}"></div>
</div>
</core-header-panel>
是什么原因造成的?下面这个错误说明了什么?
WebSocket connection to 'wss://realtime.services.disqus.com/ws/2/thread/3704740536?' failed: WebSocket is closed before the connection is established.
而且,DISQUS 甚至没有显示在 firefix、safari 和 IE 上,有人有什么想法吗?
/skypectoc/v1/pnr/parse 它由 Skype 插件(安装在 chrome 上)调用,这就是为什么你只在 google chrome.
中看到 XHR 调用的原因
卸载 Skype 插件。
以前的禁用或卸载 Skype 插件的解决方案似乎是一个有效的解决方案,但如果您的站点 public 面对它,那就不是了。
您需要的是一个永久性的解决方案,无论他们是否安装了插件都可以使用。一旦你知道诀窍,永久解决方案就出奇地容易。
您所要做的就是将以下代码片段添加到您网站的头部,它将阻止 Skype 点击呼叫彻底扫描网站!
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
我在我的 polymer 网站上使用 DISQUS,我得到了大约三百个错误,我检查了 polymer-project.org,它有同样的问题。
POST https://localhost:26143/skypectoc/v1/pnr/parse net::ERR_CONNECTION_REFUSED
我的网站::
我这样使用 disqus-commnets 元素:
<core-header-panel mode="waterfall-tall" tallClass="medium-tall" >
<div class="core-header ">{{response[0].title}}</div>
<div layout horizontal center-justified flex class="contentcontainer">
<div flex?="{{!phoneScreen}}"></div>
<div vertical flex four style="background:#ffffff;box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19); color: #555;">
<div flex id="content" class="markdown-body"></div>
<div flex><disqus-comments shortname="myName"></disqus-comments></div>
</div>
<div flex?="{{!phoneScreen}}"></div>
</div>
</core-header-panel>
是什么原因造成的?下面这个错误说明了什么?
WebSocket connection to 'wss://realtime.services.disqus.com/ws/2/thread/3704740536?' failed: WebSocket is closed before the connection is established.
而且,DISQUS 甚至没有显示在 firefix、safari 和 IE 上,有人有什么想法吗?
/skypectoc/v1/pnr/parse 它由 Skype 插件(安装在 chrome 上)调用,这就是为什么你只在 google chrome.
中看到 XHR 调用的原因卸载 Skype 插件。
以前的禁用或卸载 Skype 插件的解决方案似乎是一个有效的解决方案,但如果您的站点 public 面对它,那就不是了。 您需要的是一个永久性的解决方案,无论他们是否安装了插件都可以使用。一旦你知道诀窍,永久解决方案就出奇地容易。 您所要做的就是将以下代码片段添加到您网站的头部,它将阻止 Skype 点击呼叫彻底扫描网站!
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />