I am writing code to share a link on twitter on clicking the twitter icon Here is my template
<a id="tw" href="https://twitter.com/intent/tweet?url=https://publish.therightdoctors.com/posts/{{data2['question_id']}}/{{encodeURIComponent(data2['question'])}}&text={{data2['question']}}&via=TheRightDoctors"
title="Share on Twitter" data-service="twitter" target="_blank"> <i class="fab fa-twitter" aria-hidden="true"></i></a>
In component.ts
import { HttpParameterCodec } from "@angular/common/http";
But it is giving me error
_co.encodeURIComponent is not a function
How to solve it?
I tried to write a function in ts. Now there is no error but on compose tweet the link is coming with space like https://publish.therightdoctors.com/posts/1/What is machine learning? but I wanted this https://publish.therightdoctors.com/posts/1/What%20is%20machine%20learning?