Chuyển tới nội dung chính
import { openWebview } from "zmp-sdk/apis"; // >= 2.11.0

Tải một trang web bằng Webview. Để biết khi nào Webview được đóng, vui lòng lắng nghe sự kiện WebviewClosed.

Ví dụ

Mở trang chủ của Zalo Mini App:

openWebview({
url: "https://mini.zalo.me",
});

Mở trang chủ của Zalo Mini App toàn màn hình:

openWebview({
url: "https://mini.zalo.me",
config: {
style: "normal",
},
});

Tham số

Truyền tham số vào API dưới dạng object chứa các thuộc tính:

NameTypeDefaultDescriptionMinimum Version
config.leftButton"back" | "none""back"

Nút bên trái thanh header: (chỉ hỗ trợ cho style 'bottomSheet')

2.30.0
config.style"bottomSheet" | "normal""bottomSheet"

Kiểu hiển thị của Webview:

2.30.0
urlstring

Đường dẫn của trang web cần tải.