从 meteor 应用程序启动拨号器应用程序

Launch dialer app from meteor app

我一直在努力寻找一种方法来启动拨号器应用程序,以便从在 meteor 平台上开发的应用程序进行 phone 呼叫,但没有找到这样做的方法。

在 meteor documentation 中,他们提到 meteor 启动拨号器应用程序,如果它包含在 <a> 标签中,例如:<a href="tel:+1 xxx xxx xxxx> +1 xxx xxx xxxx </a>。当我在服务器上部署流星应用程序并通过移动网络浏览器打开它时,这种方法有效。但是如果我 运行 在我的 android 设备上使用命令 meteor run android-device 它不起作用。当我点击 link 时没有任何反应。请建议我一种方法,让它作为 android 应用程序工作。

提前致谢。

你可以在 cordova-plugin 上看看 call-number : CordovaCallNumberPlugin 我已经将它安装在我的 meteor cordova 项目中。它在 Android 和 iOS.

上运行良好

callSuccess = function(){
  console.log('call done');
  }

callError = function(){
  console.log('Error : verify phone number');
  }

window.plugins.CallNumber.callNumber(callSuccess, callError,'+1123456789',true);