local.html 3.0 KB
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2
<!DOCTYPE html>
<html>
H
hdx 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>本地网页</title>
    <style type="text/css">
      .btn {
        display: block;
        margin: 20px auto;
        padding: 5px;
        background-color: #007aff;
        border: 0;
        color: #ffffff;
        height: 40px;
        width: 200px;
      }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
18

H
hdx 已提交
19 20 21
      .btn-red {
        background-color: #dd524d;
      }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
22

H
hdx 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36
      .desc {
        padding: 10px;
        color: #999999;
      }
    </style>
  </head>
  <body>
    <p class="desc">web-view 组件加载本地 html 示例,仅在 App 环境下生效。点击下列按钮,跳转至其它页面。</p>
    <div class="btn-list">
      <button class="btn" type="button" data-action="navigateTo">navigateTo</button>
      <button class="btn" type="button" data-action="redirectTo">redirectTo</button>
      <button class="btn" type="button" data-action="navigateBack">navigateBack</button>
      <button class="btn" type="button" data-action="reLaunch">reLaunch</button>
      <button class="btn" type="button" data-action="switchTab">switchTab</button>
37
      <button class="btn" type="button" data-action="getEnv">getEnv</button>
H
hdx 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50
    </div>
    <p class="desc">网页向应用发送消息。注意:小程序端应用会在此页面后退时接收到消息。</p>
    <div class="btn-list">
      <button class="btn btn-red" type="button" id="postMessage">postMessage</button>
    </div>
    <!-- uni 的 SDK -->
    <script type="text/javascript" src="uni.webview.1.5.5.js"></script>
    <script type="text/javascript">
      // document.addEventListener('UniAppJSBridgeReady', function() {
      document.querySelector('.btn-list').addEventListener('click', function(evt) {
        var target = evt.target;
        if (target.tagName === 'BUTTON') {
          var action = target.getAttribute('data-action');
W
微调  
wanganxp 已提交
51
          console.log(action);
H
hdx 已提交
52 53
          switch (action) {
            case 'switchTab':
54
              uni.webView.switchTab({
55
                url: '/pages/tabBar/API'
H
hdx 已提交
56 57 58
              });
              break;
            case 'reLaunch':
59
              uni.webView.reLaunch({
H
hdx 已提交
60 61 62 63
                url: '/pages/tabBar/component'
              });
              break;
            case 'navigateBack':
64
              uni.webView.navigateBack({
H
hdx 已提交
65 66 67
                delta: 1
              });
              break;
68
            case 'getEnv':
69
              uni.webView.getEnv((res) => {
70 71 72 73 74
                uni.postMessage({
                  data: res
                })
              });
              break;
H
hdx 已提交
75
            default:
76
              uni.webView[action]({
H
hdx 已提交
77 78 79 80 81 82 83 84
                url: '/pages/component/button/button'
              });
              break;
          }
        }
      })
      // });
      document.querySelector("#postMessage").addEventListener('click', function() {
85
        uni.webView.postMessage({
H
hdx 已提交
86 87 88
          data: {
            action: 'message'
          }
89
        })
H
hdx 已提交
90 91 92 93
      })
    </script>
  </body>
</html>