如何在 YUI 中将事件挂钩到数据源?
http://developer.yahoo.com/yui/datasource/#events
我我正在尝试使用responseParseEvent,但我不知道如何连接到我的数据源对象,因为YUI 没有提供任何示例。
旁注:还有其他人注意到 YUI 的这一点吗?他们的文档包含的示例数量没有 jQuery 那么多?
http://developer.yahoo.com/yui/datasource/#events
I'm trying to use the responseParseEvent but I don't know how to hook into into my datasource object because YUI doesn't provide any examples.
Sidenote: Has anybody else noticed this with YUI? That their documentation doesn't contain nearly as many examples as jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
instance.subscribe(eventName,callback) 是 YUI 2 中跨组件的大多数事件的标准签名。YUI
3 遵循类似的约定,但使用 on() 和 after() 方法
instance.subscribe(eventName, callback) is a standard signature for most events across components in YUI 2.
YUI 3 follows a similar convention, but uses the methods on() and after()