将相同的数据提供为不同的格式(模型或控制器)
假设我有一个 Web 应用程序,对于某些数据库表,我想将其数据作为数组/对象集合返回以显示在网页中,并以 json 的形式返回以构建 api。
我的问题是:我应该在模型中创建一个方法以 json 形式从数据库返回数据,并使用其他方法以数组形式返回数据,还是应该使用“getData”方法并在控制器中操作输出?
案例 1:
型号:
function getDataFromDb(){
// query the db
// return as array/obj
}
function getDataAsJson(){
result = getDataFromDb();
// manipulate the result and return json object
}
案例 2
型号: >
function getDataFromDb(){
// query the db
// return as array/obj
}
控制器
result = getDataFromDB();
// create json data from the returned result
Lets say I have a web application and for some database table I want to return it´s data as an array/object collection to display in a webpage and as json to build an api for example.
My question is: Should I create a method in my model to return the data from the database as json and other method to return the data as array or should i just use a "getData" method and them manipulate the output in my controller?
Case 1:
model:
function getDataFromDb(){
// query the db
// return as array/obj
}
function getDataAsJson(){
result = getDataFromDb();
// manipulate the result and return json object
}
Case 2
Model:
function getDataFromDb(){
// query the db
// return as array/obj
}
Controller
result = getDataFromDB();
// create json data from the returned result
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单一职责原则将指导您分离 Web 界面控制器和 api 控制器( s)。这将是一种更干净、更易于维护的方法。但是,如果您出于某种原因无法做到这一点,那么至少将这些方法分开。 “多功能”方法更难维护,并使您的方法更加复杂。
The Single Responsibility principle would direct you to separate the web interface controller(s) and the api controller(s). That would be a cleaner and more maintainable approach. If however, you cannot do that for whatever reason, then at least separate the methods. 'Multifunction' methods are harder to maintain and make your methods more complex.
在我看来,这是控制器的工作。模型不应该知道(或关心)格式。
就我个人而言,我会创建某种帮助器类来将模型数据序列化为 JSON。如果您在 ASP.NET MVC 3 上运行,则应该查看 JavaScriptSerializer 类。
In my opinion this is the controller's job. The model shouldn't know (or care) about the format.
Personally I would create some kind of helper class for serializing your model data to JSON. If you're running on ASP.NET MVC 3, you should look into the JavaScriptSerializer class.