我有一个提供自动地址的脚本
<script src="${facesContext.externalContext.requestContextPath}/js/jquery.geocomplete.js"> </ script>
<script>
$ (function () {
$ ("# geocomplete " ) . geocomplete ( {
map: , " Give us feedback . "
details " form ul "
detailsAttribute " geo - data "
} ) ;
} ) ;
这里的jsf部分是代码!
<h:inputText id="geocomplete" style="margin-left:34%" type="text" value="#{creerCompteFacade.adresse}" />
但是没有给出自动地址的问题
我变了
<input type="text" id="geocomplete" style="margin-left:34%" value="#{creerCompteFacade.adresse}" />
它运行良好并提供自动地址,但问题是我无法检索该值
An Error Occurred :
org.hibernate.exception.ConstraintViolationException : Column ' ADDRESS ' can not be null
我尝试使用 JSFC,但没有任何改变
<input jsfc="h:inputText" id="geocomplete" style="margin-left:34%"
type="text" value="#{creerCompteFacade.adresse}" />