Tối ưu hoá hành vi nhấp chuột WKWebView

Nếu ứng dụng iOS của bạn sử dụng WKWebView để hiển thị nội dung trên web, bạn nên để xem xét tối ưu hóa hành vi nhấp chuột vì những lý do sau:

  • WKWebView không hỗ trợ duyệt web bằng thẻ. Những lượt nhấp vào quảng cáo cố mở một thẻ mới sẽ không làm gì mặc định.

  • Các lượt nhấp vào quảng cáo mở trong cùng một thẻ sẽ tải lại trang. Bạn có thể muốn buộc lượt nhấp vào quảng cáo sẽ mở bên ngoài WKWebView, ví dụ: nếu bạn lưu trữ H5 và muốn duy trì trạng thái của mỗi trò chơi.

  • Tính năng Tự động điền không hỗ trợ thông tin thẻ tín dụng tại WKWebView. Điều này có thể dẫn đến ít chuyển đổi thương mại điện tử hơn cho nhà quảng cáo, ảnh hưởng tiêu cực đến khả năng kiếm tiền từ nội dung web.

Hướng dẫn này cung cấp các bước đề xuất để tối ưu hoá hành vi nhấp trên thiết bị di động chế độ xem web mà vẫn giữ nguyên nội dung chế độ xem web.

Điều kiện tiên quyết

Triển khai

Bạn có thể đặt thuộc tính mục tiêu href cho đường liên kết quảng cáo thành _blank, _top, _self hoặc _parent. Với Ad Manager, bạn có thể kiểm soát thuộc tính mục tiêu là _blank hoặc _top bằng cách đặt quảng cáo để mở trong một tab mới hoặc cửa sổ. Đường liên kết quảng cáo cũng có thể chứa các hàm JavaScript như window.open(url, "_blank").

Bảng sau đây mô tả cách hoạt động của từng đường liên kết trong chế độ xem web.

Thuộc tính mục tiêu href Hành vi nhấp WKWebView mặc định
target="_blank" Đường liên kết không được xử lý bởi chế độ xem trên web.
target="_top" Tải lại đường liên kết trong chế độ xem web hiện có.
target="_self" Tải lại đường liên kết trong chế độ xem web hiện có.
target="_parent" Tải lại đường liên kết trong chế độ xem web hiện có.
Hàm JavaScript Hành vi nhấp WKWebView mặc định
window.open(url, "_blank") Đường liên kết không được xử lý bởi chế độ xem trên web.

Hãy làm theo các bước sau để tối ưu hoá hành vi nhấp chuột trong WKWebView thực thể:

  1. Đặt WKUIDelegate trên WKWebView của bạn thực thể.

  2. Đặt WKNavigationDelegate trên Thực thể WKWebView.

  3. Xác định xem có tối ưu hoá hành vi của URL lượt nhấp hay không.

    • Kiểm tra xem thuộc tính navigationType có bật hay không đối tượng WKNavigationAction là một loại nhấp chuột bạn muốn tối ưu hoá. Đoạn mã kiểm tra trong .linkActivated chỉ áp dụng cho những lượt nhấp vào đường liên kết có thuộc tính href.

    • Xem targetFrame thuộc tính trên đối tượng WKNavigationAction. Nếu giá trị trả về là nil, điều đó có nghĩa là mục tiêu của điều hướng là một cửa sổ mới. Vì WKWebView không xử lý được lượt nhấp đó, thì các lượt nhấp này phải được xử lý theo cách thủ công.

  4. Quyết định xem có mở URL bằng trình duyệt bên ngoài hay không, SFSafariViewController! hoặc chế độ xem web hiện tại. Đoạn mã cho biết cách mở URL điều hướng đi khỏi trang web bằng cách trình bày SFSafariViewController.

Ví dụ về mã

Đoạn mã sau đây cho biết cách tối ưu hoá hành vi nhấp vào chế độ xem web. Như ví dụ: tính năng này kiểm tra xem miền hiện tại có khác với miền đích hay không. Đây chỉ là một phương pháp vì các tiêu chí mà bạn sử dụng có thể thay đổi.

Swift

import GoogleMobileAds
import SafariServices
import WebKit

class ViewController: UIViewController, WKNavigationDelegate, WKUIDelegate {

  override func viewDidLoad() {
    super.viewDidLoad()

    // ... Register the WKWebView.

    // 1. Set the WKUIDelegate on your WKWebView instance.
    webView.uiDelegate = self;
    // 2. Set the WKNavigationDelegate on your WKWebView instance.
    webView.navigationDelegate = self
  }

  // Implement the WKUIDelegate method.
  func webView(
      _ webView: WKWebView,
      createWebViewWith configuration: WKWebViewConfiguration,
      for navigationAction: WKNavigationAction,
      windowFeatures: WKWindowFeatures) -> WKWebView? {
    guard let url = navigationAction.request.url,
        let currentDomain = webView.url?.host,
        let targetDomain = url.host else { return nil }

    // 3. Determine whether to optimize the behavior of the click URL.
    if didHandleClickBehavior(
        url: url,
        currentDomain: currentDomain,
        targetDomain: targetDomain,
        navigationAction: navigationAction) {
      print("URL opened in SFSafariViewController.")
    }

    return nil
  }

  // Implement the WKNavigationDelegate method.
  func webView(
      _ webView: WKWebView,
      decidePolicyFor navigationAction: WKNavigationAction,
      decisionHandler: @escaping (WKNavigationActionPolicy) -> Void)
  {
    guard let url = navigationAction.request.url,
        let currentDomain = webView.url?.host,
        let targetDomain = url.host else { return decisionHandler(.cancel) }

    // 3. Determine whether to optimize the behavior of the click URL.
    if didHandleClickBehavior(
        url: url,
        currentDomain: currentDomain,
        targetDomain: targetDomain,
        navigationAction: navigationAction) {
      return decisionHandler(.cancel)
    }

    decisionHandler(.allow)
  }

  // Implement a helper method to handle click behavior.
  func didHandleClickBehavior(
      url: URL,
      currentDomain: String,
      targetDomain: String,
      navigationAction: WKNavigationAction) -> Bool {
    // Check if the navigationType is a link with an href attribute or
    // if the target of the navigation is a new window.
    guard navigationAction.navigationType == .linkActivated ||
      navigationAction.targetFrame == nil,
      // If the current domain does not equal the target domain,
      // the assumption is the user is navigating away from the site.
      currentDomain != targetDomain else { return false }

    // 4.  Open the URL in a SFSafariViewController.
    let safariViewController = SFSafariViewController(url: url)
    present(safariViewController, animated: true)
    return true
  }
}

Objective-C

@import GoogleMobileAds;
@import SafariServices;
@import WebKit;

@interface ViewController () <WKNavigationDelegate, WKUIDelegate>

@property(nonatomic, strong) WKWebView *webView;

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];

  // ... Register the WKWebView.

  // 1. Set the WKUIDelegate on your WKWebView instance.
  self.webView.uiDelegate = self;
  // 2. Set the WKNavigationDelegate on your WKWebView instance.
  self.webView.navigationDelegate = self;
}

// Implement the WKUIDelegate method.
- (WKWebView *)webView:(WKWebView *)webView
  createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration
             forNavigationAction:(WKNavigationAction *)navigationAction
                  windowFeatures:(WKWindowFeatures *)windowFeatures {
  NSURL *url = navigationAction.request.URL;
  NSString *currentDomain = webView.URL.host;
  NSString *targetDomain = navigationAction.request.URL.host;

  // 3. Determine whether to optimize the behavior of the click URL.
  if ([self didHandleClickBehaviorForURL: url
      currentDomain: currentDomain
      targetDomain: targetDomain
      navigationAction: navigationAction]) {
    NSLog(@"URL opened in SFSafariViewController.");
  }

  return nil;
}

// Implement the WKNavigationDelegate method.
- (void)webView:(WKWebView *)webView
    decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction
                    decisionHandler:
                        (void (^)(WKNavigationActionPolicy))decisionHandler {
  NSURL *url = navigationAction.request.URL;
  NSString *currentDomain = webView.URL.host;
  NSString *targetDomain = navigationAction.request.URL.host;

  // 3. Determine whether to optimize the behavior of the click URL.
  if ([self didHandleClickBehaviorForURL: url
      currentDomain: currentDomain
      targetDomain: targetDomain
      navigationAction: navigationAction]) {

    decisionHandler(WKNavigationActionPolicyCancel);
    return;
  }

  decisionHandler(WKNavigationActionPolicyAllow);
}

// Implement a helper method to handle click behavior.
- (BOOL)didHandleClickBehaviorForURL:(NSURL *)url
                       currentDomain:(NSString *)currentDomain
                        targetDomain:(NSString *)targetDomain
                    navigationAction:(WKNavigationAction *)navigationAction {
  if (!url || !currentDomain || !targetDomain) {
    return NO;
  }

  // Check if the navigationType is a link with an href attribute or
  // if the target of the navigation is a new window.
  if ((navigationAction.navigationType == WKNavigationTypeLinkActivated
      || !navigationAction.targetFrame)
      // If the current domain does not equal the target domain,
      // the assumption is the user is navigating away from the site.
      && ![currentDomain isEqualToString: targetDomain]) {

     // 4.  Open the URL in a SFSafariViewController.
    SFSafariViewController *safariViewController =
        [[SFSafariViewController alloc] initWithURL:url];
    [self presentViewController:safariViewController animated:YES
        completion:nil];
    return YES;
  }

  return NO;
}

Kiểm tra điều hướng trang

Để kiểm tra các thay đổi đối với điều hướng trang, hãy tải

https://webview-api-for-ads-test.glitch.me#click-behavior-tests

vào chế độ xem trên web. Nhấp vào từng loại liên kết khác nhau để xem cách chúng hoạt động trong ứng dụng của bạn.

Dưới đây là một số điểm cần kiểm tra:

  • Mỗi đường liên kết sẽ mở URL dự kiến.
  • Khi quay lại ứng dụng, bộ đếm của trang thử nghiệm không đặt lại về 0 thành xác thực trạng thái trang được giữ nguyên.