/  116
 
web frameworksdesign comparison
draft - please help me improve itfocus on Model-View-Controller frameworks
 
Controllers
class MyTestController < ApplicationControllerdef indexrender_text “Hello World”endend
The name of the class has to match the name of the controller file.In Rails
 
Controllers
from django.http import HttpResponsedef index(request):return HttpResponse("Hello World”)
Django is explicit, you need to import all functions you use.In Django

Share & Embed

More from this user

Add a Comment

Characters: ...