Тёмный

Weather App in Angular with source code in GitHub 

DK Programming
Подписаться 920
Просмотров 13 тыс.
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 37   
@barathm2971
@barathm2971 Год назад
Thanks a lot sir, I looked into many videos but this is the one a beginner would expect. Such a clear process and explanation.
@dkprogramming
@dkprogramming Год назад
I am glad it was helpful!
@vikagankina5331
@vikagankina5331 7 месяцев назад
thank you for your great tutorial!!
@dkprogramming
@dkprogramming 7 месяцев назад
You are welcome!
@PrinceJeniFX
@PrinceJeniFX Год назад
you are very good at teaching angular. i hope to master angular through your teachings
@dkprogramming
@dkprogramming Год назад
Thank you! I am glad you find it helpful.
@TravelIdea99
@TravelIdea99 Год назад
@@dkprogramming Yes .i am also🥰
@NamVu-iv6ke
@NamVu-iv6ke Год назад
exactly what i was looking for, thanks a lot !!
@dkprogramming
@dkprogramming Год назад
I am glad it was helpful!
@ahmadjoumah9357
@ahmadjoumah9357 11 месяцев назад
Thank you, your explanation is very good
@dkprogramming
@dkprogramming 11 месяцев назад
You are welcome!
@MoeezMAhsan
@MoeezMAhsan 8 месяцев назад
Thankyou sir! I wish you the best
@dkprogramming
@dkprogramming 8 месяцев назад
Thank you!
@envoguetales
@envoguetales Год назад
Great ..i love it...keep going with the good work...
@dkprogramming
@dkprogramming Год назад
Thank you for the kind words!
@junky3445
@junky3445 Год назад
Great tutorial!! I only have one issue with the icons link. Im getting an unsafe url warning, and have tried to bypass security using safeurl, and domsanitizer and still can't get the weather icon to appear. Any recommendations?
@dkprogramming
@dkprogramming Год назад
I did a little research and it looks like you can use both http and https connection when you load icons so when you are building your icon url, try to use the secure connection. For example: openweathermap.org/img/wn/10d@2x.png instead of openweathermap.org/img/wn/10d@2x.png. Please let me know if it didn't work.
@dkprogramming
@dkprogramming Год назад
I was able to recreate the "unsafe" error. This error shows up if the icon url is not properly constructed. For example, if there is an extra space before or an extra space somewhere in the middle of the url.
@junky3445
@junky3445 Год назад
@@dkprogramming I went back earlier to fix the url as you mentioned in the last comment, and realized then that I had an extra space before the url. It works now thank you for letting me know. A silly mistake that I have made plenty of times.
@dkprogramming
@dkprogramming Год назад
I am glad it all worked out!
@Rafian1924
@Rafian1924 Год назад
You deserve millions of subscribers bro. keep going.. I can say it with full confidence that you will achieve it.
@dkprogramming
@dkprogramming Год назад
Thank you!
@akshayanidhi-i8u
@akshayanidhi-i8u Год назад
sir, i got stuck with an error that ,Property 'subscribe' does not exist on type 'void'.let me know how can sove this error
@dkprogramming
@dkprogramming Год назад
It's hard to troubleshoot without looking at the code so I can just guess. This error tells you that you are not getting an observable from the function you are calling. Your function doesn't return anything if its return type is 'void'. Do you have the word 'return' in front of 'this.http.get...' line in your service?
@shiblijamal8544
@shiblijamal8544 Год назад
Hi , for me the API key is not working....? IDK , I got stuck, help me out anyone.....
@dkprogramming
@dkprogramming Год назад
If you go to the Friquently Asked Questions section and scroll all the way to the bottom, there is a part about different HTTP response codes and information about what to do. openweathermap.org/faq
@gmartins-dev
@gmartins-dev Год назад
can you share the github repository please? i want check some things
@dkprogramming
@dkprogramming Год назад
The link to the GitHub repo is in the video description. Thank you.
@Bharath-gi5yj
@Bharath-gi5yj Год назад
After assigning Temperature and console log it am getting undefined
@dkprogramming
@dkprogramming Год назад
Are you getting the weather object? If yes, I would check the spelling of all properties when you assign value to your temperature variable.
@gmartins-dev
@gmartins-dev Год назад
@@dkprogramming can you share the github repository please? i want check some things
@НикитаЕвдокимов-э4р
Продолжай в том же дуxе!
@dkprogramming
@dkprogramming Год назад
Спасибо!
@DEDUSHKA_SIM
@DEDUSHKA_SIM Год назад
God forbid that this video gets into the recommendations ... So you can’t learn Angular is closely related to TypeScript, and you didn’t give a damn about all the recommendations of the developers of Angular and TypeScript.
@dkprogramming
@dkprogramming Год назад
Any comments about improving this project are appreciated. This is the official Angular best practices guide: angular.io/guide/styleguide. It would be interesting to hear what exactly is not compliant with this guide. In terms of Typescript, the only thing I would change to make the project better would be to use an interface when I create an array of objects. Interface is an advanced concept, and I just didn't want to include it in this project. We will be using interfaces in my Address Book Angular project where we create a full CRUD application. Please let me know if you have any specific suggestions about making this application better.
@MuhammadBilal-n3g
@MuhammadBilal-n3g 3 месяца назад
Hi, I am getting stuck on this thing... please give some insight on this, as i am novice to Frontend .... Could not resolve "node_modules/bootstrap/dist/css.bootstrap.min.css" angular:styles/global:styles:1:8: 1 │ @import 'node_modules/bootstrap/dist/css.bootstrap.min.css'; ╵ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You can mark the path "node_modules/bootstrap/dist/css.bootstrap.min.css" as external to exclude it from the bundle, which will remove this error and leave the unresolved path in the bundle.
@dkprogramming
@dkprogramming 3 месяца назад
Hi Bilal, You might have forgotten to put a comma (,) at the end on the line "node_modules/bootstrap/dist/css/bootstrap.min.css", inside your angular.json file. If not, try to uninstall Bootstrap by running command "npm uninstall bootstrap" and then install it again with "npm install bootstrap". There is another common pitfall. Inside the angular.json file, make sure you add the line in the right place. There are two "Style" blocks in that file. You need to use the first one. Let me know if it worked. Good luck!
Далее
To-Do List in Angular with source code in GitHub.
37:37
Brilliant Budget-Friendly Tips for Car Painting!
00:28
TEAM SPIRIT: НОВЫЙ СОСТАВ. SEASON 24-25
01:31
Angular for Beginners - Let's build a Tic-Tac-Toe PWA
20:46
Can You Add Custom Keyboard Shortcuts in VS Code?
2:40
Angular HTTP Client - Weather App
51:27
Просмотров 142
Brilliant Budget-Friendly Tips for Car Painting!
00:28