1
<iframe src="path/of/destiny"></iframe>
一個iframe,我想寫這樣的事情
<iframe src="path/of/destiny?#{myParameter}"></iframe>
<iframe src="path/of/destiny"></iframe>
一個iframe,我想寫這樣的事情
<iframe src="path/of/destiny?#{myParameter}"></iframe>
這應該是可能的,如果你是使用Facelets作爲視圖技術。但是,既然你問這個問題,我認爲你仍然在使用遺留的JSP作爲視圖技術。 JSP不允許像Facelets那樣在模板文本中使用延遲EL(#{}
)。但是,您可以在模板文本中使用標準EL(${}
)。
<iframe src="path/of/destiny?${myParameter}"></iframe>
你只需要考慮到,每當這個具有作爲JSF管理bean屬性像${bean.myParameter}
要獲得,即已經創建這個bean,並在可用範圍。您可以通過在之前的與之間的行中調用#{bean.something}
在完全可用的JSF組件中調用#{bean.something}
。 #{}
將創建bean,如果尚未創建。