0

这就是我想做的:

%input.current-page( type="text" value=currentPageNum )

其中currentPageNum是动态的。

这就是我调用这个模板的方式:

@$el.html( Haml.render( @template, { locals: { currentPageNum: @currentPageNum } } ) )

这个问题是关于haml.js,但我没有足够的声誉在这里创建新标签

4

1 回答 1

2

我找到了答案:

%input.current-page{ type: "text", value: "#{currentPageNum}" }

进一步阅读:

https://github.com/creationix/haml-js/blob/master/test/embedded_code.haml

比较

https://github.com/creationix/haml-js/blob/master/test/embedded_code.html

于 2012-05-31T13:30:33.933 回答