skip to Main Content

How to connect telegram web app to angular

I don't know how to connect telegram to angular. In the HTML file I do this - <script src="./assets/telegram-web-app.js"></script> But I don’t know what to do in the component to call the function I need. https://core.telegram.org/bots/webapps#initializing-mini-apps I searched for a…

VIEW QUESTION

Asp.net – angular – ERROR NullInjectorError: No provider for

I'm trying to list all the categories from my asp .net application, and im receiving this nullinjector error: ERROR NullInjectorError: R3InjectorError(_AppModule)[CategoriaServiceList -> CategoriaServiceList]: NullInjectorError: No provider for CategoriaServiceList! at NullInjector.get (core.mjs:5626:27) at R3Injector.get (core.mjs:6069:33) at R3Injector.get (core.mjs:6069:33) at ChainedInjector.get (core.mjs:15378:36)…

VIEW QUESTION

Html – Call Delete event on tr and td angular

I have this tr and td tag both have onclick event <tr (click)="update(list.Item)" *ngFor="let list of List | paginate: { itemsPerPage: 10, currentPage: p };"> <td style="width:5%" (click)="delete(list.Item)"> <a title="Delete"><i class="icon-trash" style="margin-right: 10px"></i></a> </td> </tr> delete(itemID) { } issue is…

VIEW QUESTION
Back To Top
Search