TurboGears - Operazioni CRUD
I seguenti metodi di sessione eseguono operazioni CRUD:
DBSession.add(model object) - inserisce un record nella tabella mappata.
DBSession.delete(model object) - elimina il record dalla tabella.
DBSession.query(model).all() - recupera tutti i record dalla tabella (corrispondente a una query SELECT).
È possibile applicare il filtro al set di record recuperato utilizzando un attributo di filtro. Ad esempio, per recuperare i record con city = 'Hyderabad' nella tabella degli studenti, utilizza la seguente dichiarazione:
DBSession.query(model.student).filter_by(city = ’Hyderabad’).all()
Vedremo ora come interagire con i modelli tramite gli URL del controller.
Per prima cosa progettiamo un modulo ToscaWidgets per l'inserimento dei dati dello studente
Hello\hello\controllers.studentform.py
import tw2.core as twc
import tw2.forms as twf
class StudentForm(twf.Form):
class child(twf.TableLayout):
name = twf.TextField(size = 20)
city = twf.TextField()
address = twf.TextArea("",rows = 5, cols = 30)
pincode = twf.NumberField()
action = '/save_record'
submit = twf.SubmitButton(value = 'Submit')
Nel RootController (root.py dell'applicazione Hello), aggiungi la seguente funzione di mapping '/ add' URL -
from hello.controllers.studentform import StudentForm
class RootController(BaseController):
@expose('hello.templates.studentform')
def add(self, *args, **kw):
return dict(page='studentform', form = StudentForm)
Salva il seguente codice HTML come studentform.html nella cartella dei modelli -
<!DOCTYPE html>
<html xmlns = "http://www.w3.org/1999/xhtml"
xmlns:py = "http://genshi.edgewall.org/"
lang = "en">
<head>
<title>Student Registration Form</title>
</head>
<body>
<div id = "getting_started">
${form.display(value = dict(title = 'Enter data'))}
</div>
</body>
</html>
accedere http://localhost:8080/addnel browser dopo aver avviato il server. Il seguente modulo di informazioni sullo studente si aprirà nel browser:
Il modulo di cui sopra è progettato per essere inviato al ‘/save_record’URL. Quindi asave_record() la funzione deve essere aggiunta nel file root.pyper esporlo. I dati dello studentform vengono ricevuti da questa funzione come filedict()oggetto. Viene utilizzato per aggiungere un nuovo record nella tabella studenti sottostante il modello studente.
@expose()
#@validate(form = AdmissionForm, error_handler = index1)
def save_record(self, **kw):
newstudent = student(name = kw['name'],city = kw['city'],
address = kw['address'], pincode = kw['pincode'])
DBSession.add(newstudent)
flash(message = "new entry added successfully")
redirect("/listrec")
Si noti che dopo l'aggiunta con successo, il browser verrà reindirizzato a ‘/listrec’ URL. Questo URL è esposto da un filelistrec() function. Questa funzione seleziona tutti i record nella tabella studenti e li invia sotto forma di oggetto dict al modello studentlist.html. Questolistrec() la funzione è la seguente:
@expose ("hello.templates.studentlist")
def listrec(self):
entries = DBSession.query(student).all()
return dict(entries = entries)
Il modello studentlist.html scorre l'oggetto dizionario delle voci utilizzando py: for Directive. Il modello studentlist.html è il seguente:
<html xmlns = "http://www.w3.org/1999/xhtml"
xmlns:py = "http://genshi.edgewall.org/">
<head>
<link rel = "stylesheet" type = "text/css" media = "screen"
href = "${tg.url('/css/style.css')}" />
<title>Welcome to TurboGears</title>
</head>
<body>
<h1>Welcome to TurboGears</h1>
<py:with vars = "flash = tg.flash_obj.render('flash', use_js = False)">
<div py:if = "flash" py:replace = "Markup(flash)" />
</py:with>
<h2>Current Entries</h2>
<table border = '1'>
<thead>
<tr>
<th>Name</th>
<th>City</th>
<th>Address</th>
<th>Pincode</th>
</tr>
</thead>
<tbody>
<py:for each = "entry in entries">
<tr>
<td>${entry.name}</td>
<td>${entry.city}</td>
<td>${entry.address}</td>
<td>${entry.pincode}</td>
</tr>
</py:for>
</tbody>
</table>
</body>
</html>
Ora rivisita il file http://localhost:8080/adde inserisci i dati nel modulo. Facendo clic sul pulsante di invio, il browser porterà a studentlist.html. Inoltre lampeggerà un messaggio "nuovo record aggiunto con successo".