檢索的JavaScript的輸入值我有一個腳本,讓自動地址我不能爲JSF
<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}" />
例外說,你要堅持一個EJBEntity的對象到你的數據庫,具有空因爲不存在而無法回收的地址欄。 JSF代碼在哪裏? – Omar
@Omar問題在於OP對''生成的HTML使用了錯誤的id。 –
你說得對。看起來他基本上錯過了''標籤。 –
Omar