Ich habe eine Geschwindigkeitsvorlage mit Tag-Form.Wie binden Sie Daten von der Geschwindigkeitsvorlage an den Federregler?
<div class="row">
<div class="container">
<div class="col-lg-12">
<table class=" table table-striped">
<thead>
<th>#</th>
<th>username</th>
<th>role</th>
<th>password</th>
</thead>
<tbody>
#foreach($user in $users)
<tr>
<td>$user.id</td>
<td>$user.username</td>
<td>$user.role</td>
<td>$user.password</td>
<td><a href="/user/delete/$user.id">Delete</a></td>
<td><a href="/user/edit/$user.id">Edit</a></td></tr>
#end
</tbody>
</table>
<form method="post" action="/user">
<div class="form-group">
<label for="username">Username:</label>
<input type="username" class="form-control" id="username">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd">
</div>
<div class="form-group">
<label for="role">Role:</label>
<input type="role" class="form-control" id="role">
</div>
<button type="submit" class="btn btn-default">Add</button>
</form>
</div>
</div>
Und ich brauche, um die eingegebenen Daten an die Steuerung übergeben. Hier ist Controller-Code.
Ich bin Neuling in Geschwindigkeit und ich habe noch nicht in diesem Rahmen herausgefunden. Ich habe lange googlen aber erfolglos. Bitte hilf dem Geschwindigkeitsguru!
Vielen Dank! Du machst meinen Tag) –
Froh, zu helfen. Bitte akzeptieren und upvote die Antwort :) – Olantobi