如何找到为Flutter Web应用程序提供服务的URL?

时间:2020-03-11 20:46:51

标签: flutter flutter-web

我想在以下位置使用我的Web应用程序:

  http://example.com/ui/      # My flutter web application
  http://example.com/api/...  # REST endpoints

如何找到从其下载应用程序的URL(http://example.com/ui/),以便可以从中生成URL http://example.com/api/

我希望不要将example.com烘焙到Web应用程序中,因为我们在CI期间将其部署到多个具有不同域名的集群中。

1 个答案:

答案 0 :(得分:2)

import 'dart:html' as html;

...
debugPrint('host=${html.window.location.host + html.window.location.pathname}');
...