Sproutcore中的自定义html / javascript?

时间:2011-02-10 05:09:53

标签: sproutcore

是否可以在Sproutcore中使用自定义html / javascript?

我必须使用云服务提供商提供的一些代码。

1 个答案:

答案 0 :(得分:1)

是的,这很容易。在您的视图中,您可以定义render()方法:

App.myView = SC.View.extend({

  render: function(context, firstTime) {
    var someValue = `getValue`

    context.push(
      "<span class='mySpan'>", someValue, "</span>",
      "Any Other html/javascript that you want, can go here."
    );

  }

})

您还可以使用firstTime属性来了解您是第一次渲染(放出所有内容),还是只更新现有代码。

你可以找到更多: