vote up 0 vote down star

What's a good data structure for use in MVC web applications to use to pass data into view to ensure standardization and keep the view as non-coder friendly as possible?

flag

3 Answers

vote up 0 vote down

I like django structure. It's very flexible. Example:

project/
       apps/
            app1/
                 models.py
                 views.py
                 forms.py
                 templates/ #or into root templates path
                 url.py #to dispatch
                 etc..
       templates/
                app1/
                    templates
link|flag
vote up 0 vote down

To keep it really simple you could just pass a dictionary with string keys and value.

link|flag
vote up 0 vote down

Use a custom model class and keep it as non-coder friendly as possible :)
How you construct the model class strongly depends on the specific page.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.