如何找到为flutter web应用程序提供服务的URL



我希望我的网络应用程序在以下位置可用:

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}');
...

相关内容

  • 没有找到相关文章

最新更新