Ich weiß, dass es andere Fragen zu diesem Thema gibt, und ich habe mir fast alle durchgelesen, aber keine von ihnen hat mein Problem gelöst.
Ich habe ein Home-Verzeichnis:
def search(in: NodeSeq) : NodeSeq = {
bind("work", in,
"docId" -> text("", did = _),
"visitId" -> text("", vid = _),
"provider" -> text("", prov = _),
"emCode" -> text(ecode, ecode = _))
}
zusammen mit:
<lift:home.searchForm form="POST" multipart="true" >
<table>
<tr>
<td>DocId</td>
<td>VisitId</td>
<td>Provider</td>
<td>EanMCode</td>
</tr>
<tr>
<td><work:docId /></td>
<td><work:visitId /></td>
<td><work:provider /></td>
<td><work:emCode /></td>
<td><button>Click Me!</button></td>
</tr>
</table>
</lift:home.searchForm>
Innerhalb einer HTML-Seite. Ich habe xmlns:lift="http://liftweb.net/" in default.... eingefügt. Ich kann keine Möglichkeit finden, dies zu beheben... Ich erhalte
XML Parsing Error: prefix not bound to a namespace
Location: http://localhost:8080/
Line Number 29, Column 10: <td><work:docId></work:docId></td>
in Firefox. Ich habe ähnlichen Code geschrieben und hatte es in einer anderen app arbeiten und nur kippen sogar etwas im tun anders, dass nicht trivial Benennung...
Vielen Dank im Voraus!