4

我需要一个登录请求。我在 WPF 中使用 webview2 包并使用它。

我的代码是这样的:

  HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, new Uri("Sample_url"));
        request.Content = new FormUrlEncodedContent(new[] {
            new KeyValuePair<string, string>("email", email),
            new KeyValuePair<string, string>("password", "123"),
        });
     // webview2 does not contain a defenition for 'NavigateWithHttpRequestMessage'
     Browser.NavigateWithHttpRequestMessage();

我想要做的是先登录用户然后向他展示视图。

4

2 回答 2

4

使用WebView2 version 1.0.790-prelease(可能甚至更早),您可以CoreWebView2WebResourceRequest使用webView.CoreWebView2.Environment.CreateWebResourceRequest(). 然后可以将其传递给NavigateWithWebResourceRequest.

因此,例如:

var request = webView.CoreWebView2.Environment.CreateWebResourceRequest(navigateData.Url, 
              "POST", postData, "Content-Type: application/x-www-form-urlencoded");
webView.CoreWebView2.NavigateWithWebResourceRequest(request);
于 2021-03-11T11:58:17.160 回答
1

好的,当我给你那个链接时,这并不像我想象的那么容易。

首先,CoreWebView2.NavigateWithWebResourceRequest(CoreWebView2WebResourceRequest)仅包含pre-releaseWebView2.

其次,CoreWebView2WebResourceRequest没有公共构造函数,因此您不能实际使用它(在WebResourceRequested事件处理程序之外)。

这显然是一个“预发布”的东西,还没有准备好使用。

所以你会怎么做?

好吧,我建议,你用的方法,我用了一段时间:

1. Navigate to the login page, using the `Source` property.
2. Get the names of the `input` elements for 'email' and 'passwords'.
3. Construct some javascript to set the values of those 2 elements and perform a `click` on the button, that posts the form.

那应该让你登录。

于 2020-12-21T20:47:42.563 回答