cordova-plugin-customurlscheme 插件 获取url 参数的问题
插件介绍和用法,可以参考 http://docs.wex5.com/cordova-plugin-customurlscheme/ 不过接收参数的代码,和3.7之前的版本有差异的,3.8之后版本案例已经修改了 window.plugins.launchmyapp.getLastIntent(function(url) { alert('test'+url); if (intent.indexOf('mycoolapp://' > -1)) { console.log("received url: " + url); } else { return console.log("ignore intent: " + url); } }, function(error) { alert('test error'); return console.log("no intent [...]