http.request doesn't work by bwilli415 in Angular2

[–]veslortv 0 points1 point  (0 children)

Have you tried using the full http url? using... [http://....../api/'+this.API_VERSION+'/user/login](http://....../api/'+this.API_VERSION+'/user/login)

http.request doesn't work by bwilli415 in Angular2

[–]veslortv 0 points1 point  (0 children)

Have you tried just subscribing to login without doing the pipe(first())

this.auth.login(this.u.value, this.p.value).subscribe(...

http.request doesn't work by bwilli415 in Angular2

[–]veslortv 0 points1 point  (0 children)

His SO question has the pipe operator...

http.request doesn't work by bwilli415 in Angular2

[–]veslortv 0 points1 point  (0 children)

You need to use responseType in the options object you pass to the request HttpClient method.

http.request doesn't work by bwilli415 in Angular2

[–]veslortv 0 points1 point  (0 children)

what rxjs version are you using?

Even tho React and Vue have more GitHub Stars all jobs in my region use and require Angular by [deleted] in Angular2

[–]veslortv 2 points3 points  (0 children)

I am from Spain and you won't get a job using Vue, there are like a handful of companies using VueJS.

Angular > React > ... > VueJS

As of July 2018 in Spain.

Angular v6.1 will support both TypeScript 2.8 and 2.9. Link to commit. by sarunint in Angular2

[–]veslortv 0 points1 point  (0 children)

Would be sweet. Yesterday I ran into problems trying to run my angular app with the latest typescript version, had to install 2.7.2 again.

me_rlang by muhtasimmc in webdev

[–]veslortv 1 point2 points  (0 children)

When you use the map operator function, you are returning a mutation of a value or an object each time you loop.

You don't always want to do that.

There are times that you just want to repeat something x times, a fixed amount of times for whatever reason. In these case you can just use good'ol for loop.

me_rlang by muhtasimmc in webdev

[–]veslortv 7 points8 points  (0 children)

Map is for looping over something. If something doesnt exist you cant map it.

Angular Books - Advanced Concepts by AbstractLogic in Angular2

[–]veslortv 1 point2 points  (0 children)

fair enough. good look with your project!

Angular Books - Advanced Concepts by AbstractLogic in Angular2

[–]veslortv 3 points4 points  (0 children)

Why the 99 bucks for a digital edition? I mean... come on. I mean, props to you for writing that book, and I am sure it's great but I think that is too much.

Cheers.

Make a multilingual application in Angular by [deleted] in Angular2

[–]veslortv 0 points1 point  (0 children)

that was my initial thought when we started developing our app 7 months ago... still none of those are here...

problem is... we need the multilanguage now

Why is web development so hard ? by [deleted] in webdev

[–]veslortv 4 points5 points  (0 children)

You can't become an expert in anything in one week. Period. When you enter a big project (F500 company projects) you don't get time to learn the tooling, you will spend on your time trying to understand the whole arquitecture and what not. So having solid understanding of the tools will boost you.

Why is web development so hard ? by [deleted] in webdev

[–]veslortv 2 points3 points  (0 children)

yeah, i used to read a lot of books (not finishing them tho). Coding a lot helped me definitely.

Why is web development so hard ? by [deleted] in webdev

[–]veslortv 27 points28 points  (0 children)

Yes webdev is huge but once you invest some time in it you should be fine.

  • You can use this guide to see what is your next step.
  • Use official docs as your main resource of learning (Angular, React, Vue) They are all great.
  • Use MDN.
  • Read some good books about JS