在Backbone.js 中,使用Underscore 模板動態產生HTML 很常見,但早期的程式碼片段可能會遇到“變數未定義” 「錯誤。本文解釋了發生這種情況的原因以及如何解決它。
過去,可以使用以下語法在一個步驟中解析和填充下劃線模板:
var html = _.template(template_string, data);
但是,Underscore 1.7.0 及以上版本引入了模板選項的概念,必須明確提供為_.template() 的第二個參數。
編譯模板using _.template(template_string).使用資料執行傳回的函數來填入template.範例
範例var tmpl = _.template(template_string); var html = tmpl(data);
度假租賃資料集:透過遵循正確的範本語法,您可以在Backbone.js 應用程式中有效地使用Underscore 範本。 >
以上是為什麼我在 Backbone.js 中收到'未定義下劃線模板變數”錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!