- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 notepad++ 编写服务器端 dart 代码,我已经使用 dart 编辑器在服务器端 dart 代码中取得了成功。但是我同样认为我在使用notepad++的地方做了一个错误,因为浏览器中的 dart 中的 net::ERR_UNSAFE_PORT 完成了由命令提示符初始化的 Dart 服务器端,当我尝试访问 172....190 时,Bowser(dartium) 说上面那个错误!!!
服务器端代码
main() {
HttpServer.bind("172...", 4045).then((server) {
server.listen((res) {
res.response.headers.add("Access-Control-Allow-Origin", "172.25.10.181");
res.response.headers
.add("Access-Control-Allow-Methods", "POST,GET,DELETE,PUT,OPTIONS");
res.response.headers.add('Access-Control-Allow-Headers',
'Origin, X-Requested-With, Content-Type, Accept,application/x-www-form-urlencoded');
print('I am writing server side code');
});
});
}
req = new HttpRequest();
req.open('get', 'http://172...:4045');
req.send(data);
req.onReadyStateChange.listen((_) {
if (req.readyState == HttpRequest.DONE &&
(req.status == 200 || req.status == 0)) {
print(req.responseText);
}
});
最佳答案
这是处理此问题的最佳方法。
There some ports are reserved for specific protocols like 80 for HTTPand 22 for SSH etc. If you use that port for another kind of protocolyou will face this error. In my case, I'm using 6000 port for mybackend API server which was resolved. I just simply move 6000 port to7789 all stuff working as expected. Here are the list ports forspecific protocols that you may not violate. You need to use port other then this for your specific work.
关于dart - Dart 中的 net::ERR_UNSAFE_PORT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35502345/
我正在使用 notepad++ 编写服务器端 dart 代码,我已经使用 dart 编辑器在服务器端 dart 代码中取得了成功。但是我同样认为我在使用notepad++的地方做了一个错误,因为浏览器
我在开发服务器上发布了我的项目代码。在发布之前,我在 IIS 上创建了一个网站,它的链接是 192.168.1.133:601 (localhost) 但是在 chrome 上得到 ERR_UNSAF
我制作了一个index.html文件以及index.js和server.js。在 server.js 中我编写了以下代码: const express = require("express"); co
编辑: 我查看了 chrome 错误代码,它显示:错误代码:ERR_UNSAFE_PORT。我将端口更改为 6001,它工作正常 - 为什么会这样,6000 通常是由于某种原因不能用于本地开发的端口?
显然 android 向 WebVeiw API 添加了端口检查。我无法在网上找到任何方式在 android 8 (API 26) 的 webview 中打开 http 链接。它总是显示:err_un
我是一名优秀的程序员,十分优秀!