meteor 框架中的全局对象 UI 是什么,应该如何使用?

What is global object UI in meteor framework and how should it be utilised?

A console.log(UI) 将产生以下结果 Object {_DOMBackend: Object, _EventSupport: Object, _throwNextException: false, currentView: null, _globalHelpers: Object…} 似乎缺少文档,有人可以分享更多这方面的信息吗?

提前致谢。

它没有记录在案,因为它已经被弃用了一段时间。

UI 用于包含几个已移至 Template 命名空间的函数,即 UI.registerHelper 现在是 Template.registerHelper.

你可以忽略它,因为它最终会在 Meteor 的未来版本中被删除。