im apenas começando com elevador e scala e tem um problema eu realmente não entendo.
eu tenho o index.html folowing
<html>
<head><title>title</title></head>
<body>
<table>
<lift:Members.list>
<tr>
<td><m:nick/></td>
</tr>
</lift:Members.list>
</table>
</body>
</html>
E o seguinte trecho:
class Members {
def list(xhtml: NodeSeq) =
Member.findAll.flatMap(member => bind(m,xhtml
,nick -> member.nickName
))
}
por alguma razão, eu recebo o seguinte erro. ive tentou um monte de coisas, mas não posso fazê-lo funcionar. o que está errado?
XML Parsing Error: prefix not bound to a namespace
Location: http://localhost:8080/hazardlift-1.0-SNAPSHOT/
Line Number 8, Column 25:<td><m:nick></m:nick></td>
-----------------------------^













