47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
.aa {
|
|
|
|
|
|
margin: 100px;
|
|
width: 200px;
|
|
height: 100px;
|
|
border-radius: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<button class="aa" onclick="postMsgToAPP()">向 APP 发送数据</button>
|
|
</body>
|
|
|
|
|
|
<script>
|
|
(function () {
|
|
if (window.__appInstallData) {
|
|
return;
|
|
}
|
|
|
|
window.__appInstallData = true;
|
|
|
|
window.AppBridge.token = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOjgxNDI4NTczNTY2NjY4ODAwLCJkYXRhIjp7fSwic3ViIjoiODE0Mjg1NzM1NjY2Njg4MDAiLCJleHAiOjE3ODM5MzM1ODQsIm5iZiI6MTc4MzMyODc4NCwiaWF0IjoxNzgzMzI4Nzg0fQ.r1wYfvpV-5HIgwUuvq1Or3jPgjc3AhfJmoV1PNP23-Y';
|
|
|
|
///TODO 后续业务
|
|
|
|
})();
|
|
function postMsgToAPP() {
|
|
window.AppBridge.postMessage(JSON.stringify({ type: 'navigator_pop', value: null }))
|
|
console.log(window.AppBridge.token)
|
|
console.log(window.AppBridge.playId)
|
|
}
|
|
</script>
|
|
|
|
</html> |