在模板助手中记录数据上下文的信息

以下内容使用 Chrome Logging API。如果在多个模板中使用 .group() 语法,它将以图形方式将来自不同模板的控制台日志组织到分层树中。

你还可以了解如何检查当前数据上下文以及如何对数据进行字符串化。

Template.landingPage.getId = function(){
  // using a group block to illustrate function scoping
  console.group('coolFunction');

  // inspect the current data object that landingPage is using
  console.log(this);

  // inspect a specific field of the locally scoped data object
  console.log(JSON.stringify(this._id);

  // close the function scope
  console.groupEnd();
  return this._id;
}