What is scaffolding? Is it a term for a particular platform?

前端 未结 7 1966
清歌不尽
清歌不尽 2021-01-29 20:14

Scaffolding, what is it? Is it a Rails-only thing?

相关标签:
7条回答
  • 2021-01-29 20:39

    Scaffolding generally refers to a quickly set up skeleton for an app. It's not rails-only since other platforms have it as well. It's also not generally meant to be a "final" system; merely the first, smallest way to do it.

    0 讨论(0)
  • 2021-01-29 20:44

    No it is used in other technologies also such as ASP.NET MVC

    it creates a basic layout from some predefined code which programmers uses in almost every project , Eg: for database data access it can make a crud method for create, read, update, delete operations OR you might use it to create layout for your View/Html Code

    0 讨论(0)
  • 2021-01-29 20:45

    Scafolding is usually some type of code generation where you point it at a database, and the technology creates basic CRUD (create, read, update, delete) screens.

    0 讨论(0)
  • 2021-01-29 20:48

    From Wikipedia:

    Scaffolding is a meta-programming method of building database-backed software applications. It is a technique supported by some model-view-controller frameworks, in which the programmer may write a specification that describes how the application database may be used. The compiler uses this specification to generate code that the application can use to create, read, update and delete database entries, effectively treating the template as a "scaffold" on which to build a more powerful application.

    0 讨论(0)
  • 2021-01-29 20:49

    I believe that Wikipedia and some answers here provides a narrow and restricted view. Scaffolding is not just for CRUD operations on top of a database. Scaffolding has a broader objective to give you a skeleton app for any kind of technology.

    Yeoman is a modern and useful tool for scaffolding. Using their own words:

    The web's scaffolding tool for modern webapps

    What's Yeoman?

    Yeoman helps you to kickstart new projects, prescribing best practices and tools to help you stay productive.

    To do so, we provide a generator ecosystem. A generator is basically a plugin that can be run with the yo command to scaffold complete projects or useful parts.

    Through our official Generators, we promote the "Yeoman workflow". This workflow is a robust and opinionated client-side stack, comprising tools and frameworks that can help developers quickly build beautiful web applications. We take care of providing everything needed to get started without any of the normal headaches associated with a manual setup.

    With a modular architecture that can scale out of the box, we leverage the success and lessons learned from several open-source communities to ensure the stack developers use is as intelligent as possible.

    As firm believers in good documentation and well thought out build processes, Yeoman includes support for linting, testing, minification and much more, so developers can focus on solutions rather than worrying about the little things.

    That's it. Use scaffolding to create a quick-start application to work as an example or the foundation of your solution. It makes you productive faster them building things from scratch.

    0 讨论(0)
  • 2021-01-29 21:01

    It is not a rails only term although I think it originated there (at least that is where I first heard it.)

    Scaffolding is a framework that allows you to do basic CRUD operations against your database with little or no code. Generally, you then go through and add the code to manage the data the way you want replacing the scaffolding. It is generally only intended to get you up and running quickly.

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