断句:Store all parameters but the first passed to this function as an array
// Store all parameters but the first passed to this function as an array //除了第一个参数,把调用publish函数时的所有传入参数保存为一个数组。 var data = Array.prototype.slice.call(arguments, 1),
---------------------------------------------------------------end