在 MVC 模式中:当用户键入内容时,Control 会将用户输入“翻译”到 Model 以处理数据。
但是,在其他场景中,例如我的表单有一个列表框,并在加载时从数据库加载数据。所以,加载方法我应该放在 View 中,或者我应该通过 Control 调用它。
例如: 查看:
public void Loading(){
//some init here
//load data from database
}
public void Loading(){
//some init here
//control.loadDatabase();
}
在这个模式中哪个是最好的。请给我一个建议。
谢谢 :)