我在Mac Mavericks和Ubuntu Linux上运行Dart。我刚刚开始;并且,没有一个示例将通过我的本地网络运行。当我在Ubuntu上安装服务器并尝试使用mac访问时,没有任何反应。当我尝试从Ubunutu访问时,我得到一个“java.net Connection Refused error”同样适用于任何一台机器上的Curl,(连接被拒绝)。所有示例都可以从localhost作为客户端/服务器正常运行。客户端应用程序或浏览器都无法连接。所有其他服务器/客户端在家庭网络中正常工作。防火墙没问题,我仔细检查了端口号。所需端口上没有冲突的服务器。我尝试了Dart网站上的5个不同的脚本和其他脚本,每个脚本都有CORS功能,但没有任何连接,包括下面的示例,SimpleServer -Github
示例代码
/* A simple web server that responds to **ALL** GET requests by returning
* the contents of data.json file, and responds to ALL **POST** requests
* by overwriting the contents of the data.json file
*
* Browse to it using http://localhost:8080
*
* Provides CORS headers, so can be accessed from any other page
*/
import 'dart:io';
final HOST = "127.0.0.1"; // eg: localhost
final PORT = 8080;
final DATA_FILE = "data.json";
void main() {
HttpServer.bind(HOST, PORT).then((server) {
server.listen((HttpRequest request) {
switch (request.method) {
case "GET":
handleGet(request);
break;
case "POST":
handlePost(request);
break;
case "OPTIONS":
handleOptions(request);
break;
default: defaultHandler(request);
}
},
onError: printError);
print("Listening for GET and POST on http://$HOST:$PORT");
},
onError: printError);
}
/**
* Handle GET requests by reading the contents of data.json
* and returning it to the client
*/
void handleGet(HttpRequest req) {
HttpResponse res = req.response;
print("${req.method}: ${req.uri.path}");
addCorsHeaders(res);
var file = new File(DATA_FILE);
if (file.existsSync()) {
res.headers.add(HttpHeaders.CONTENT_TYPE, "application/json");
file.readAsBytes().asStream().pipe(res); // automatically close output stream
}
else {
var err = "Could not find file: $DATA_FILE";
res.write(err);
res.close();
}
}
/**
* Handle POST requests by overwriting the contents of data.json
* Return the same set of data back to the client.
*/
void handlePost(HttpRequest req) {
HttpResponse res = req.response;
print("${req.method}: ${req.uri.path}");
addCorsHeaders(res);
req.listen((List<int> buffer) {
var file = new File(DATA_FILE);
var ioSink = file.openWrite(); // save the data to the file
ioSink.add(buffer);
ioSink.close();
// return the same results back to the client
res.add(buffer);
res.close();
},
onError: printError);
}
/**
* Add Cross-site headers to enable accessing this server from pages
* not served by this server
*
* See: http://www.html5rocks.com/en/tutorials/cors/
* and http://enable-cors.org/server.html
*/
void addCorsHeaders(HttpResponse res) {
res.headers.add("Access-Control-Allow-Origin", "*");
res.headers.add("Access-Control-Allow-Methods", "POST, GET, OPTIONS");
res.headers.add("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
}
void handleOptions(HttpRequest req) {
HttpResponse res = req.response;
addCorsHeaders(res);
print("${req.method}: ${req.uri.path}");
res.statusCode = HttpStatus.NO_CONTENT;
res.close();
}
void defaultHandler(HttpRequest req) {
HttpResponse res = req.response;
addCorsHeaders(res);
res.statusCode = HttpStatus.NOT_FOUND;
res.write("Not found: ${req.method}, ${req.uri.path}");
res.close();
}
void printError(error) => print(error);
data.json
{
"language":"DART",
"targets":["dartium","javascript","Android?"],
"website":{
"homepage":"www.dartlang.org",
"api":"api.dartlang.org"
}
}
答案 0 :(得分:1)
我认为这是因为Dart服务器配置为仅侦听localhost上的客户端。您需要使其侦听任何IPv4 / v6客户端,以便通过网络从服务器接收任何响应。
将行final HOST = "127.0.0.1";
更改为final HOST = InternetAddress.ANY_IP_V4;
或final HOST = InternetAddress.ANY_IP_V6;
它应该有效。