gpt4 book ai didi

javascript - 下划线标记在 backbone 中有什么作用,我们什么时候使用它?

转载 作者:行者123 更新时间:2023-11-30 13:18:03 25 4
gpt4 key购买 nike

我正在经历学习 backbone 的过程,并不理解所有的语法。下面我放入了一些我一直在努力学习 Backbone 的代码,所以我可以在这个问题中引用它。虽然我了解了 backbone 的大部分工作原理,但我不太了解某些代码中一些标记背后的某些含义。 BackBone 的文档来源充其量是稀缺的。我得到了其中的 90%,但是我没有得到的语法是下划线“_”真正提供了什么以及何时使用它。例如下面有在“.bindAll( ....”处使用下划线的代码。当然我明白绑定(bind)是什么。只是不确定何时使用下划线以及标记扮演什么 Angular 色。另一个例子是当下划线在下面的“(this.collection.models).each(function(item)...”代码之前显示时。我知道代码正在循环,但是为什么他们使用下划线标记。感谢您的帮助.

(function($){

var Item = Backbone.Model.extend({
defaults: {
part1: 'hello',
part2: 'world'
}
});
var List = Backbone.Collection.extend({
model: Item
});

var ListView = Backbone.View.extend({
el: $('body'),
events: {
'click button#add': 'addItem'
},
initialize: function(){
_.bindAll(this, 'render', 'addItem', 'appendItem'); // remember: every function that uses 'this' as the current object should be in here

this.collection = new List();
this.collection.bind('add', this.appendItem); // collection event binder

this.counter = 0;
//once the object is initialized, render the page.
this.render();
},
render: function(){
var self = this;
$(this.el).append("<button id='add'>Add list item</button>");
$(this.el).append("<ul></ul>");
_(this.collection.models).each(function(item){ // in case collection is not empty
self.appendItem(item);
}, this);
},
addItem: function(){
this.counter++;
var item = new Item();
item.set({
part2: item.get('part2') + this.counter // modify item defaults
});
this.collection.add(item); // add item to collection; view is updated via event 'add'
},
appendItem: function(item){
$('ul', this.el).append("<li>"+item.get('part1')+" "+item.get('part2')+"</li>");
}
});

var listView = new ListView();
})(jQuery);

最佳答案

Underscore 只不过是一个实用/有用函数的集合,它们是高效的、跨浏览器的。 underscore 的每个函数都以一个下划线字符 _ 开头(因此命名为 Underscore)。

(强调我的)

Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects. It's the tie to go along with jQuery's tux, and Backbone.js's suspenders.

backbone 也可以有自己的一组函数,但由于 Underscore 中已经存在所需的实用函数,因此由 backbone 使用它们。换句话说,Backbone 与 Underscore 的结合为您提供了更多的编程/功能需求的能力和灵 active 。

请注意,Backbone 和 Underscore 都是由同一作者编写的。

阅读更多文档:

http://underscorejs.org/

关于javascript - 下划线标记在 backbone 中有什么作用,我们什么时候使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11267854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com