我想在以下位置使用我的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期间将其部署到多个具有不同域名的集群中。
答案 0 :(得分:2)
import 'dart:html' as html;
...
debugPrint('host=${html.window.location.host + html.window.location.pathname}');
...