美文网首页
web与native开发接口调用

web与native开发接口调用

作者: 程序员不务正业 | 来源:发表于2019-05-13 11:37 被阅读0次

JS SDK封装调用

异步

  try {
        ic.system.selectUser({
          success: function (data) {
            alert(JSON.stringify(data));
          },
          fail: function (error) {
            alert("选择用户信息失败:" + JSON.stringify(error));
          }
        });
      } catch (error) {
        this.$toast(error)
        console.log("-----", error)
      }
image.png

同步

var token = ic.system.getToken();

注册window方式直接调用

https://note.youdao.com/ynoteshare1/index.html?id=039f8d587c9287898bb409d21de7b780&type=note

相关文章

网友评论

      本文标题:web与native开发接口调用

      本文链接:https://www.haomeiwen.com/subject/fqopoqtx.html