TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

A Review of MVC

24 点作者 fcoury将近 13 年前

3 条评论

azza-bazoo将近 13 年前
"a program is without value before it is used by an end user for something valuable"<p>Nice snippet of advice there. Also the rest of Trygve's original post is an excellent reminder (and in simple terms) of MVC as an idea, rather than MVC as a label to slap on the next bit of JS code you publish on github ... which is basically all the intro paragraph says.
评论 #4202578 未加载
Xurinos将近 13 年前
Here are a couple of the reports:<p>Including Thing: <a href="http://heim.ifi.uio.no/~trygver/1979/mvc-1/1979-05-MVC.pdf" rel="nofollow">http://heim.ifi.uio.no/~trygver/1979/mvc-1/1979-05-MVC.pdf</a><p>Revision: <a href="http://heim.ifi.uio.no/~trygver/1979/mvc-2/1979-12-MVC.pdf" rel="nofollow">http://heim.ifi.uio.no/~trygver/1979/mvc-2/1979-12-MVC.pdf</a>
chris_wot将近 13 年前
It's interesting that MVC is mostly introduced to most people as part of a web based architecture. From my understanding of MVC, the view can be updated by the model, and view can update the model. Which makes sense in the context that you have multiple views into the model. This doesn't tend to happen with web based MVC.