我希望我的网络应用程序在以下位置可用:
http://example.com/ui/ # My flutter web application
http://example.com/api/... # REST endpoints
我如何找到下载我的应用程序的URL(http://example.com/ui/
(,以便从中生成URLhttp://example.com/api/
?
我宁愿不将example.com
烘焙到Web应用程序中,因为我们在CI期间部署到许多具有不同域名的集群。
import 'dart:html' as html;
...
debugPrint('host=${html.window.location.host + html.window.location.pathname}');
...