@flycoders_sourav wrote:
when am sharing the text .P tag is showing.
Below my code
HTML<ion-card> <ion-item> <ion-avatar item-start> <img src="demo"> </ion-avatar> <p><a href="#">{{item._embedded.author[0].name}}</a></p> <p><a href="#">{{item._embedded['wp:term'][0][0].name}}</a></p> </ion-item> <img *ngIf="item.featured_image_urls && item.featured_image_urls.thumbnail" [src]="item.featured_image_urls.thumbnail"> <ion-card-content> <p [innerHTML]="item.content.rendered"></p> </ion-card-content> <ion-row> <ion-col> <button ion-button icon-left clear small (click)="shareItem(item)"> <ion-icon name="share" ></ion-icon> </button>
.ts code
shareItem(item) { // message, subject, file, url this.sharingVar.share(item.content.rendered +""+ item._embedded.author[0].name ,"www.demo.com") .then(() => { }) .catch(() => { }); }
Below the screen shot.
Please help me anyone
Posts: 1
Participants: 1