- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正忙于编写自己的 JSF2 UIComponent
及其相关的渲染器。我所有的 UIComponent
都实现了 ClientBehaviorHolder
。我不明白的是如何真正呈现 ClientBehaviorHolder
。
例如,下面的代码说明了 ClientBehaviorHolder
在 Mojarra 中是如何呈现的。
private static void renderHandler(FacesContext context,
UIComponent component,
Collection<ClientBehaviorContext.Parameter> params,
String handlerName,
Object handlerValue,
String behaviorEventName,
String submitTarget,
boolean needsSubmit,
boolean includeExec)
throws IOException {
ResponseWriter writer = context.getResponseWriter();
String userHandler = getNonEmptyUserHandler(handlerValue);
List<ClientBehavior> behaviors = getClientBehaviors(component, behaviorEventName);
// Don't render behavior scripts if component is disabled
if ((null != behaviors) &&
(behaviors.size() > 0) &&
Util.componentIsDisabled(component)) {
behaviors = null;
}
if (params == null) {
params = Collections.emptyList();
}
String handler = null;
switch (getHandlerType(behaviors, params, userHandler, needsSubmit, includeExec)) {
case USER_HANDLER_ONLY:
handler = userHandler;
break;
case SINGLE_BEHAVIOR_ONLY:
handler = getSingleBehaviorHandler(context,
component,
behaviors.get(0),
params,
behaviorEventName,
submitTarget,
needsSubmit);
break;
case SUBMIT_ONLY:
handler = getSubmitHandler(context,
component,
params,
submitTarget,
true);
break;
case CHAIN:
handler = getChainedHandler(context,
component,
behaviors,
params,
behaviorEventName,
userHandler,
submitTarget,
needsSubmit);
break;
default:
assert(false);
}
writer.writeAttribute(handlerName, handler, null);
}
对于提交处理程序,Mojarra 添加了 mojarra.jsfcljs
javascript、UIParameter
和其他脚本。对于链处理程序,使用 jsf.util.chain
。
我的问题是:
mojarra.jsfcljs
是 Mojarra 独有的。 PrimeFaces 有自己的实现,Apache Tomahawk 也有。问题是:mojarra.jsfcljs
做了什么,它的用途是什么?这样我就可以自己写一个了?另外,在哪里可以找到 mojarra.jsfcljs
的实现?ClientBehaviorHolder
的规范是什么?在此先表示衷心的感谢。
最佳答案
How does one determine if we have to render handlers in chain or a single behaviour or user specific handler?
假设最终用户(读作:正在使用您的组件的 JSF 开发人员)编程:
<your:component onclick="return foo()" />
并且您打算最终为您的组件自己的目的呈现:
<someHtmlElement onclick="jsf.ajax.request(...); return false;" />
那么您不能只连接最终用户的 onclick
在组件的 jsf.ajax.request()
前面像这样
<someHtmlElement onclick="return foo(); jsf.ajax.request(...); return false;" />
即使它返回 true
, 你的组件的 jsf.ajax.request
根本不会被调用。你最终想要结束这样的事情:
<someHtmlElement onclick="if returnsTrue('return foo();') { jsf.ajax.request(...); } return false;" />
这正是jsf.util.chain()
正在幕后进行。
mojarra.jsfcljs
is only unique to Mojarra. PrimeFaces have their own implementation, so does Apache Tomahawk. Question is: what doesmojarra.jsfcljs
do and what is its use? This is so that I can write one for my own? Also, where can I find the implementation ofmojarra.jsfcljs
?
它在 jsf.js
里面文件。找到它的简单方法是使用 <f:ajax>
打开一个 JSF 页面嵌入并查看生成的 <head>
<script>
的来源及其网址。这个文件默认是缩小的。如果你设置 javax.faces.PROJECT_STAGE
上下文参数 Development
,然后将以未缩小的方式提供。 jsfcljs()
的任务功能是提交带有必要参数的父表单。这是来自 Mojarra 2.1.21 的相关摘录。
/*
* This is called by command link and command button. It provides
* the form it is nested in, the parameters that need to be
* added and finally, the target of the action. This function
* will delete any parameters added <em>after</em> the form
* has been submitted to handle DOM caching issues.
*
* @param f - the target form
* @param pvp - associative array of parameter
* key/value pairs to be added to the form as hidden input
* fields.
* @param t - the target of the form submission
*/
mojarra.jsfcljs = function jsfcljs(f, pvp, t) {
What is the specification to render
ClientBehaviorHolder
?
使用 ClientBehavior#getScript()
获取自动生成的脚本。它需要 ClientBehaviorContext
可以使用 ClientBehaviorContext#createClientBehaviorContext()
创建的参数.反过来,您有责任将其呈现为适当的 HTML 属性,例如 onclick
.
FacesContext context = FacesContext.getCurrentInstance();
UIComponent inputOrCommandComponent = ...; // Your component.
String event = "click"; // Just the particular HTML DOM event name you need to listen on.
ClientBehaviorContext clientBehaviorContext = ClientBehaviorContext.createClientBehaviorContext(context, component, event, component.getClientId(context), null);
StringBuilder builder = new StringBuilder();
for (ClientBehavior behavior : component.getClientBehaviors().get(event)) { // Collect all <f:ajax> declarations on the given event.
builder.append(behavior.getScript(clientBehaviorContext));
builder.append(';');
}
String script = builder.toString();
// Write it to the desired HTML attribute.
请注意,您绝对不必担心以这种方式编写特定于 JSF 实现的脚本。它们将为您生成。
所有与所有,ClientBehaviorHolder
只是ajax支持的抽象。它允许开发人员嵌套 <f:ajax>
在你的组件中。所有标准 JSF UIInput
和 UICommand
组件实现它。
关于ajax - 呈现 ClientBehaviorHolder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17379979/
我正忙于编写自己的 JSF2 UIComponent 及其相关的渲染器。我所有的 UIComponent 都实现了 ClientBehaviorHolder。我不明白的是如何真正呈现 ClientBe
to non-ClientBehaviorHolder parent
我试图在从下拉列表中选择一个值时调用一个函数。这是我的代码: #{' '}
Unable to attach
我使用 JSF 2、primefaces 4.0 并且我尝试使用 DataTable - 单元格内编辑,因为它是在 primefaces 展示中生成的,但是我有一个错误,尽管我复制了展示中显示的相同示
我在集成 SWF、Primefaces 2.2.1、JSF 2、Spring Security 3、Spring 3.1.0 时遇到奇怪的错误 INFO: Unsanitized stacktrace
我在运行我的应用程序时收到以下错误: Unable to attach to non-ClientBehaviorHolder parent 我的 JSF:
我是一名优秀的程序员,十分优秀!