The note in the process of building an angular-based stock selection website

After recently completing an Angular-based stock screening and viewing site. I have a deeper understanding of the front-and-back relationship between the Angular framework and website development. To record what I had gained; I decided to write this blog and document the whole process of building this site.

And now I want to test this editorThe first thing worth mentioning is the difference between VUE and  Angular:  Angular is better suited for enterprise projects with large data volume changes, and Vue performs better in projects with small data volumes. Put aside these general summaries. What causes such features? One reason is the check mechanics. Angular uses Dirty Checking. Specifically, when the data changes, to confirm the change in values. The Angular framework checks each other for changes in the expressions bound by the different elements to find the “dirty data” in them. That is why the Angular framework is suitable for projects with a large amount of data change.

In the same way as Angular, Vue .js the way it is checked is dependent on tracking. After you have configured the observation methods of dependencies, these dependencies are collected through functions. Finally, the data changes that rely on it are made. The specific process can be summed up in the following image.The whole can be divided into three parts: setting up dependencies, collecting dependent information, and changing data.

Finally, we can start on building website. This time I decided to build a stock selection website with related filter.(Still remember Angular framework is suit for large amount data change?)

Similar Posts

One Comment

Leave a Reply

Your email address will not be published. Required fields are marked *