我正在查看其他人的代码并试图了解他们做了什么。那里有一些我不知道它们是什么的术语。原型,订阅?有人可以帮我理解这个功能在做什么吗?
谢谢
myspace.prototype.attached = function () {
var that = this;
this.appViewModel.dataLoaded.subscribe(function (val) {
window.setTimeout(function() {
that.showUI(val);
}, 300);
}, this);
};