Model–View–Controller (MVC) is a design pattern for computer user interfaces that divides an application into three areas of responsibility. It is often applied to websites.
3
votes
0answers
49 views
Clear function for Stanford iOS 8 Calculator application
I am following the Stanford iOS 8 lectures and I believe I have successfully added the "Clear" functionality to the application, but I don't know if I am doing it properly.
Controller
...
3
votes
1answer
55 views
Retrieving values from UITableViewCell
I have a UITableview with custom cells, every cell has a button called cellButton. When the user taps the button I present an ...
2
votes
2answers
44 views
MVC controller / PHP request dispatcher
My question is, can this code be refined to be more efficient? It works fine, however I've noticed a small increment in time between requesting controllers/methods and I'm not sure where this slow ...
2
votes
0answers
28 views
Sports statistics controller
Is there too much logic in this controller (should I migrate them to the model)? How else can it be refactored?
...
9
votes
1answer
84 views
Hangman game using Java 8
I’ve been getting used to Java and I’ve written a simple hangman game using event-driven programming in Java 8. Please let me know of any improvements regarding the readability and design of the ...
-1
votes
0answers
19 views
efficiently retrieve records from a DB, using an existing structure
I'm currently building a MVC application with C#. The database has a User(Login.cs) table, though I also have my own User class (MyUser.cs), which contains some validation and a static method. The ...
3
votes
1answer
97 views
GUI flashcard program in Java
I'm new to Java and I've written a flashcard program in Java 8 that allows the user to create a collection of flashcards and then test themselves using those flashcards. Please provide any ...
1
vote
0answers
44 views
Java MVC Main Method and Controller
I'm coding a school project that involves MVC and threading.
This is my Main class. From there I launch the actual client.
...
2
votes
0answers
44 views
Simple Java MIDI player followup
This is my second iteration of a simple Java MIDI player. I've made several amendments and would like to see if the code is now correctly implemented and readable. This follows on from the first ...
6
votes
1answer
50 views
Simple Java MIDI player
I created a simple program that allows you to create and play MIDI sounds.
I've used the MVC approach and I’d like to know if there are any improvements to be made regarding the design and structure ...
2
votes
1answer
93 views
Calling Stored Procedure “insert query” using EF 6, UOW, and MVC 5
I'm a beginner in MVC programming, repository, and UOW using Entity framework. I tried to calling my existing SP in my MVC project using UOW and EF.
Here is my code to mapping my SP in myDbContext ...
3
votes
0answers
77 views
Laravel controller for a commenting system
Can someone review my Controller? I should follow these guidelines:
Code should be written with MVC pattern and to use OOP.
The code now works fine, but I need to improve it. Also, should I use ...
1
vote
0answers
36 views
Do I need to separate controllers by HTTP request? [closed]
I am in the process of learning proper mvc implementation. I have decided to work on a small project in my spare time and I am stuck on the controllers. I created a basic router that matches URI using ...
0
votes
1answer
109 views
Implementation of MVC Bootstrap & Factory
Before I get started, I feel I need to list the following.
I am not looking for an existing DI or Framework this is a personal project to shift from procedural to oop programming.
Tear this apart. ...
2
votes
0answers
46 views
DAO and service layer design in Java MVC web application
I'm building a prototype MVC web application as a learning exercise so I'm avoiding existing frameworks. I'm interested in feedback on the following approach
The view consists of JSPs which use EL to ...
5
votes
1answer
70 views
Static registry
I am working on a base framework for my various PHP related projects. I have grown since beginning all of this, but the one area I am still having difficulty/concerns with involves the dependencies of ...
1
vote
0answers
50 views
Create and access database connection
I'm working on an MVC project and I'm writing the code for get access to the database connection.
I have two files:
The first (PdodbLib.class.php) extends PDO:
...
0
votes
3answers
61 views
Mixing business logic and presentation layer in enum type
Let's assume I have an enum type with currency:
...
2
votes
0answers
36 views
Which pattern could help to refactor this controller code?
I know I should use services and patterns to refactor this controller action, but I can't imagine one that could fit/be appropriate for this problem.
It seems a strategy or template, but a strategy ...
3
votes
1answer
140 views
Portfolio landing page
I'm trying to grasp this whole MVC design pattern idea but I'm in the dark if I'm doing it correct. This is where I need some feedback on what I've done so far. Here's what I'm wondering:
Does the ...
1
vote
1answer
160 views
Dependency Injection With Unity in MVC 5 without repository and unit of work
I want to use dependency injection with Unity in my application. I am not following repository pattern and unit-of-work (and don't want to). I also have ViewModel in my controller action method. ...
15
votes
1answer
264 views
Order a delicious pie here
For a quick summary: I've created this internal web application, and I've hit a point where I can really see the mess I've made. I need some help separating the logic, the view, and the data.
More ...
8
votes
1answer
76 views
Refactoring my Todo List was on my Todo List. How's my MVC?
This is a follow up to Rolling my own Configuration with UI. I got a lot of great advice about the Configuration system I created, but no one touched on how all of my logic for the UI was in the code ...
4
votes
1answer
193 views
2D board game: good Model part?
First time writing a big project in OOP. I am quite used to scientific programming but not to OOP, and even less to building GUIs. I am writing a 2D board game: the player can move on a map from tile ...
4
votes
1answer
171 views
Data model in MVC for multiple providers
I have constructed an API service that dives into a storage engine and retrieve data.
I have tried my best to apply the MVC modelling with services (repository) in mind where the controller (as it ...
1
vote
0answers
35 views
Newsfeed app for allowing custom Reddit feeds
I'm currently working on a newsfeed app (see it live here or its files on GitHub) that lets a user create a custom Reddit feed. The user adds the subreddits they'd like to view, and then can view them ...
2
votes
0answers
188 views
MVC Login for Android
The code for my Android application is below and so far I'm happy with it. Before anyone comments, I do acknowledge it requires the addition of further validation. The android application is a login ...
2
votes
0answers
44 views
Binding model to view
What I need - if there are some changes to model in must be rendered in view (HTML). The main problem here is to catch changes in model.
Firstly I tried to use watch. However it can't work with IE8 ...
5
votes
3answers
142 views
Code redundancy issue while feeding dropdownlists
I have a dashboard to manage a learning center system. There are scenarios like admin create learning center and define a classroom in it and then assign some courses in it and assign students to ...
3
votes
2answers
74 views
Using a registry with static container
I am currently working on a class to make objects and vars available to child classes while attempting to avoid a singleton. Each child with dependencies extend this class and pass params (var names) ...
1
vote
1answer
105 views
5
votes
1answer
162 views
Tic Tac Toe in MVC
Do I have basics of MVC and SOLID principles right in this simple 'Tic Tac Toe' game?
View.java
...
4
votes
3answers
122 views
Make huge view in C# readable and maintanable
I have an application that is using MVC5 with C# and Razor Engine. This view displays a huge table:
...
5
votes
2answers
994 views
Unit of work Repository pattern DBcontext EF-Entities and ninject
I am totally confused while implementing Repository pattern with unit of work and Entity framework because I have seen tons of examples. Please suggest whether I am on the right track or not.
...
1
vote
0answers
83 views
Folder model controller view
I'm using a slim router and have made a folder model controller view. Below is one of my model files. I made one database with one model.
I have some problem in my project: there are several ...
2
votes
0answers
102 views
Usage of MVVM in iOS [closed]
I'm an iOS developer and I'm guilty of having Massive View Controllers in my projects so I've been searching for a better way to structure my projects and came across the MVVM (Model-View-ViewModel) ...
0
votes
0answers
64 views
Validation in Node.js
I'm building a NodeJS application, but I'm not sure what will be the best way to structure my code.
I have the following model:
...
0
votes
1answer
64 views
Implementation of a URL router
I was wondering if you could provide some feedback on this Router class I built. Worth noting that it relies on an Apache rewrite rule that always redirects to this file, but passes the path into ...
1
vote
2answers
90 views
Displaying a city name with concatenations
I am learning MVC and Android. I have create a sample program which is supposed to implement the MVC philosophy. I plan to build my codes on top of this.
I wish to know whether I have got the concept ...
3
votes
1answer
83 views
Null checks in view
It's really a nitty-gritty issue for me, and I have been here many times before. How could this be improved?
I have a basic viewmodel for a view:
...
4
votes
3answers
82 views
PHP Bilingual Error System Ideas
I am building a php based mobile website that must be in both Spanish and English. This is my first bilingual site so I've been having to re-think a lot of coding practices I currently use to ...
4
votes
2answers
173 views
PHP MVC model structure
Just looking for some feedback for one of my models I have for a project. I'm pretty happy with it but I was wondering if anyone had any optimization suggestions.
...
6
votes
1answer
134 views
Enhance MVC implementation
I know that there are several ways to develop the MVC pattern. To improve consistently my knowledge, I would like to get some advice and feedback. How could I enhance my code? I knew that there are ...
2
votes
0answers
43 views
MySQL natural search and like search
I have written two queries for searching, but I want to simplify them as it seems needed.
...
5
votes
1answer
489 views
Road to MVC: the case of Settings Table View Controller
Now that I know that MVC can help do better code, I want to make my SettingsTableViewController class conform to it.
...
1
vote
1answer
92 views
Diving into PHP's MVC - the application's core
I recently started programming in php using the mvc-pattern, which resulted in one of best choices, I did so far, but I read through many articles showing "easy" examples and some of them were quite ...
5
votes
2answers
458 views
Rails controller method that conditionally filters results
This code for my blog checks to see if tags are in the params hash. If they are, then only posts that are tagged will be paginated. Otherwise, all of the posts are paginated.
...
1
vote
1answer
151 views
2
votes
1answer
98 views
Any improvements for my LoginController class?
This is probably going to be my final question regarding controllers. I feel like I have a good enough understanding of them now and am able to write them cleanly.
I've recently adapted a less error ...
6
votes
1answer
182 views
Is my LoginView class valid?
I know the Model, Controller and View's purpose, but I have never really found a good concrete class example of a View class.
Usually I see people having some small ...