0

下面的代码片段来自服务于获取请求的服务器

服务器片段

1)

  io.serve(handler, InternetAddress.LOOPBACK_IP_V4, 8080).then((server) {
    print('Listening on port 8080');
  }).catchError((error) => print(error));

2)

Router routes = new Router()
                      ..get('/newest', handler.handleNewest)
                      ..get('/anonymous', handler.handleAnonymousGetRequest)
                      ..post('/anonymous', handler.handleAnonymousPostRequest);

3)

shelf.Response handleNewest(shelf.Request request){
  print('got request for newest');
  return new shelf.Response.ok('sample content later fetched form db');
}

在单击事件中,我还在客户端应用程序中运行此代码。

void makeRequestNewest() {
  String path = 'http://127.0.0.1:8080/newest';
  HttpRequest.getString(path)
    .then((String newestContent){
    post_list.appendText(newestContent);
  })
  .catchError((Error error){
    post_list.appendText('an error occurred: ' + error.toString());
  });

不幸的getString是没有成功。运行catchError并导致. an error occurred: Instance of '_XMLHttpRequestProgressEvent'同样在 Dart 编辑器的 ToolsOutput 命令行中,我得到[web] GET /newest => Could not find asset linkShepherdClient|web/newest.. 这是正确的,因为该目录不存在。我以为我可以使用目录作为参数来运行正确的处理程序,并在 中返回正确的值.ok(),但似乎并非如此。这是否意味着我无法使用 GET 请求从任何来源获取数据,因为它总是会尝试从服务器上的此目录中实际获取数据?

编辑:使用 http 包的代码示例。(不工作)

import 'package:http/http.dart' as http;
import 'package:http/browser_client.dart';

void makeRequestNewest() {
  String path = 'http://127.0.0.1:8080/newest';
  var client = new BrowserClient();
  client.get(path)
    .then((response){
    post_list.appendText('response status: ${response.statusCode}');
    post_list.appendText('Response body: ${response.body}');
  });
}

使用 http 包等附加包的答案也非常受欢迎。

4

1 回答 1

0

我想到了。我试图从不同的域(localhost:8080而不是localhost:8080/newest)访问资源。这需要shelf.response. 例如,这是这样做的

shelf.Response.ok('Message returned by handleNewest later fetched by db', headers: CORSHeader);

其中 CORSHeader 设置为

const Map<String, String> CORSHeader = const {'Access-Control-Allow-Origin': '*'};

如果您想访问任何域的内容。您还可以将星号替换为要限制访问的域。

于 2015-05-18T19:30:41.527 回答