使用phonegap和phonenumber插件获取sim的phonenumber以及如何编码?

时间:2017-03-02 15:15:32

标签: android cordova

我正在使用Phonegap桌面应用程序和在线Phonegap构建服务。我正在使用phonegap制作我的第一个Android应用程序。我已编码获取电话号码,但它没有显示电话号码。我从函数中得到警告“失败”。我已经成功添加了github插件。我的代码如下。

       function get_number()
{
    //this.bindEvents();
    alert("enterd");
    document.addEventListener("deviceready",get_it, false);
    function get_it()
    {
      if (window.plugins && window.plugins.phonenumber)
      {
        window.plugins.phonenumber.get(success, failed);
        function success(phonenumber) {
        console.log("My number is " + phonenumber);
        alert("success");
        alert(phonenumber);
                                    }
        function failed()
        {
          alert("failed");
        }
      }
    else
    {
      alert("plugins are not loaded");
    }
  }


}

this image from phonegap build plugin list the first plugin I am using.

0 个答案:

没有答案