21

如何在 Web 应用程序的用户当前所在的 Flutter Web 应用程序中获取当前 URL?

例如:

app1.website.com app2.website.com

根据 web 应用程序用户当前所在的当前 URL 的结果,我想显示不同的内容。

4

4 回答 4

25

你可以像这样找到它:

import 'dart:html';

var url = window.location.href;
于 2019-09-10T15:23:07.867 回答
22

这将为您提供当前的网址。

Uri.base

从文档:

在浏览器中运行时,这是当前页面的当前 URL(来自 window.location.href)。 https://api.flutter.dev/flutter/dart-core/Uri/base.html

于 2020-10-16T18:07:16.187 回答
3

您可以使用 javascript 代码,如下所示:

import 'dart:js' as js;

FlatButton(
  child: Text("Button"),
  onPressed: () {
    print(js.context['location']['href']);
    js.context.callMethod("alert", [js.context['location']['href']]);
  },
)
于 2019-05-20T16:26:01.263 回答
0

Uri.base.path- 到导航器上的当前路径

于 2020-12-24T10:45:39.163 回答