在离子幻灯片中实现社交共享
Implementing social sharing inside ionic slides
我正在使用 this plugin
在离子应用程序中实现社交共享
在我的页面中,我使用的是离子幻灯片,
<ion-slides>
<ion-slide *ngFor="let item of strings">
<div>
{{ item }}
</div>
</ion-slide>
</ion-slides>
这是我的打字稿文件,用于将数据导入幻灯片
export class Birthday {
strings : Array<string>;
constructor(public navCtrl: NavController, public navParams: NavParams) {
this.strings = new Array<string>();
this.strings.push('text1');
this.strings.push('text2');
this.strings.push('text3');
this.strings.push('text4');
}
}
现在在使用社交分享插件时如何在消息字段中获取当前幻灯片数据
share(**slide data heree**, subject, file, link) {
this.platform.ready().then(() => {
if(window.plugins.socialsharing) {
window.plugins.socialsharing.share(message, subject, file, link);
}
});
}
使用 viewChild 获取组件中的幻灯片。
import { Slides } from 'ionic-angular';
@ViewChild(Slides)slides:Slides
//To get current slide,
let index = this.slides.getActiveIndex();
//Get the item as:
this.strings[index]
的文档
我正在使用 this plugin
在离子应用程序中实现社交共享在我的页面中,我使用的是离子幻灯片,
<ion-slides>
<ion-slide *ngFor="let item of strings">
<div>
{{ item }}
</div>
</ion-slide>
</ion-slides>
这是我的打字稿文件,用于将数据导入幻灯片
export class Birthday {
strings : Array<string>;
constructor(public navCtrl: NavController, public navParams: NavParams) {
this.strings = new Array<string>();
this.strings.push('text1');
this.strings.push('text2');
this.strings.push('text3');
this.strings.push('text4');
}
}
现在在使用社交分享插件时如何在消息字段中获取当前幻灯片数据
share(**slide data heree**, subject, file, link) {
this.platform.ready().then(() => {
if(window.plugins.socialsharing) {
window.plugins.socialsharing.share(message, subject, file, link);
}
});
}
使用 viewChild 获取组件中的幻灯片。
import { Slides } from 'ionic-angular';
@ViewChild(Slides)slides:Slides
//To get current slide,
let index = this.slides.getActiveIndex();
//Get the item as:
this.strings[index]
的文档