我想从我的科尔多瓦应用程序中的其他应用程序如脸谱或YouTube接收URL。我认为:
docs
plugins
我安装插件,然后编写这段代码。
window.plugins.webintent.hasExtra(window.plugins.webintent.EXTRA_TEXT,
function(url) {
// url is the value of EXTRA_TEXT
}, function() {
// Something really bad happened.
}
);
我用Cordova/Ionic字体
我有个问题:
第一:我把这段代码放哪儿了?用某种方法?在构造器里?
第二:我有这个错误->属性插件在类型窗口上不存在
编辑:
这是构造函数
constructor(public navCtrl: NavController,platform: Platform) {
platform.ready().then(() => {
WebIntent.hasExtra(WebIntent.EXTRA_TEXT).then(
function(url) {
console.log("succes" + url);
}, function(url) {
console.log("error" + url)
});
})
}
最佳答案
如果你用过离子原生的
import {WebIntent} from 'ionic-native';
WebIntent.hasExtra(WebIntent.EXTRA_TEXT).then(onSuccess, onError);
你可以在之后使用它
platform.ready().then(() => {
//use plugin
})
关于android - 在Cordova/Ionic中接收网址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41331580/