I have gotten so much use out of your tutorials. Thank you so much.
@_erayerdin5 жыл бұрын
Buffer overflow in calculateTrueLove()
@neomokono69795 жыл бұрын
I subscribed because of this video. Great work, really excited to see more of your content
@blessedffs5 жыл бұрын
Nicely explained. Thanks !
@vidalroland5 жыл бұрын
That was helpful ! If I understand well, Angular 7 merged services and providers into services. Right ? Should we do one service for all API requests or slice it into multiple services ?
@stewwweee6 жыл бұрын
Very well explained ..simple and near ,nice one Josh
@MyAsdfqwe5 жыл бұрын
Thank you! This was explained perfectly. Now i just use services for everything.
@dmgGeronimo5 жыл бұрын
helped me a lot! thanks
@saurabrakshit4053 жыл бұрын
nice vdo man ! I have this function in the service file printArray() { const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; console.log(arr); } & I'm calling this function in home.page.ts as following: import { AdServiceService } from '../ad-service.service'; constructor(adService: AdServiceService) { } printValue() { this.adService.printArray().subscribe((resp) => { console.log(resp); }) } but geting error under "adService" inside printValue() function can you suggest me any solution for this issue thanks in advance!!!!!!
@Arigatex6 жыл бұрын
Is there such a thing as too many services? Should I try to keep the number resonably low with long services or is it best practice to have many small ones? I can see arguments for both.
@JoshuaMorony6 жыл бұрын
In the end, I think it comes down to what works best for your application. Generally, I would have a separate provider for each entity/concept in the application (Users, Todos, Jobs, etc).
@watsoncyrusanikwai38886 жыл бұрын
Good one! Thanks.
@JarridLima6 жыл бұрын
Thanks. Very good
@99imre5 жыл бұрын
thank you, great!
@kapscreators6 жыл бұрын
Hi in ionic I am having problem like I am not able to create apk
@js_talks6 жыл бұрын
Hi, maybe this help you engineerphilosophy.com/ionic-framework-setup-step-by-step-tutorial/
@TECStudy3 жыл бұрын
Thnx
@eltonleao39794 жыл бұрын
Examample is gonna be my son's name
@RobsonOliveiraDosSantos226 жыл бұрын
You did not show how to share data between pages with services
@JarridLima6 жыл бұрын
Basta chamar o service na outra página também e repetir o mesmo processo.
@FrancescoDeGiorgio6 жыл бұрын
you can simply do these following steps: in your service page (let's say "example.service.ts) declare a variable userData = { "param1" : " ", "param2" : "" }; , in the page you want to use it -> import { ExampleService} from '../services/example.service'; and in the constructor declare it as constructor(private myService : ExampleService) {} - for using it just type this.myService.userData.param1 = "test"; this.myService.userData.param2 = "test for parameter 2" etc
@neura39645 жыл бұрын
super lazy, dont even make an real service to eschange data between pages