Should I Use a Framework While Learning Web Development

前端 未结 7 1911
花落未央
花落未央 2021-02-02 14:11

I realize that this may be subjective but I truly need an answer to this and I can\'t seem to find anything close enough to it in the rest of the Forum. I have read some folks

相关标签:
7条回答
  • 2021-02-02 14:45

    You'll be using SOME sort of framework. The question is, what level do you want to learn at?

    You'll probably not care to learn about asynchronous I/O and mutlithreaded vs. select/poll styles of web servers.

    So then, your language of choice is going to provide a layer atop this, the languages preferred "web interface" API. For Java it's Servlets, the lowest level you'd typically code at for server side web applications.

    You should find what this "lower level" layer is in your language and learn the API at least. You should know basic HTTP like status codes, cookies, redirects, POST vs GET, URL encoding, and possibly what some of the more important headers do.

    You'll then come to appreciate what these higher level frameworks bring to the table, and be better able to evaluate what is the appropriate level of abstraction for your needs/project.

    0 讨论(0)
提交回复
热议问题