local.html 3.8 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
    </div>
    <p class="desc">网页向应用发送消息。注意:小程序端应用会在此页面后退时接收到消息。</p>
    <div class="btn-list">
      <button class="btn btn-red" type="button" id="postMessage">postMessage</button>
    </div>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
43 44 45 46 47 48
    <p class="desc">文件选择</p>
    <div style="padding: 0 10px;">
      <p style="font-size: 14px;">&lt;input type="file" /&gt;</p>
      <input type="file" />
      <p style="font-size: 14px;">&lt;input type="file" accept="image/*" multiple /&gt;</p>
      <input type="file" accept="image/*" multiple />
W
wanganxp 已提交
49 50
      <p style="font-size: 14px;">普通input</p>
      <input placeholder="底部输入框"/>
51 52
      <br/>
      <a href="https://web-ext-storage.dcloud.net.cn/uni-app-x/pkg/hello-uniappx.apk" download>hello uni-app x apk下载(自动化测试使用)</a>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
53
    </div>
H
hdx 已提交
54 55 56
    <!-- uni 的 SDK -->
    <script type="text/javascript" src="uni.webview.1.5.5.js"></script>
    <script type="text/javascript">
雪洛's avatar
雪洛 已提交
57
      const isWeb = location.href && /^https?:/.test(location.href)
H
hdx 已提交
58 59
      // document.addEventListener('UniAppJSBridgeReady', function() {
      document.querySelector('.btn-list').addEventListener('click', function(evt) {
雪洛's avatar
雪洛 已提交
60 61 62 63
        if(isWeb) {
          alert('web端暂不支持此功能')
          return
        }
H
hdx 已提交
64 65 66
        var target = evt.target;
        if (target.tagName === 'BUTTON') {
          var action = target.getAttribute('data-action');
W
微调  
wanganxp 已提交
67
          console.log(action);
H
hdx 已提交
68 69
          switch (action) {
            case 'switchTab':
70
              uni.webView.switchTab({
71
                url: '/pages/tabBar/API'
H
hdx 已提交
72 73 74
              });
              break;
            case 'reLaunch':
75
              uni.webView.reLaunch({
H
hdx 已提交
76 77 78 79
                url: '/pages/tabBar/component'
              });
              break;
            case 'navigateBack':
80
              uni.webView.navigateBack({
H
hdx 已提交
81 82 83
                delta: 1
              });
              break;
84
            case 'getEnv':
85
              uni.webView.getEnv((res) => {
86 87 88 89 90
                uni.postMessage({
                  data: res
                })
              });
              break;
H
hdx 已提交
91
            default:
92
              uni.webView[action]({
H
hdx 已提交
93 94 95 96 97 98 99 100
                url: '/pages/component/button/button'
              });
              break;
          }
        }
      })
      // });
      document.querySelector("#postMessage").addEventListener('click', function() {
雪洛's avatar
雪洛 已提交
101 102 103 104
        if(isWeb) {
          alert('web端暂不支持此功能')
          return
        }
105
        uni.webView.postMessage({
H
hdx 已提交
106 107 108
          data: {
            action: 'message'
          }
109
        })
H
hdx 已提交
110 111 112 113
      })
    </script>
  </body>
</html>