最大的网站源码资源下载站,
atlas架构提供了一种比asp.net中数据绑定(data binding)强大得多的客户端绑定模型。这种模型异常灵活,甚至有些类似wpf(windows presentation foundation)中的绑定模型。atlas提供的绑定模型允许您将某对象的任意一个属性绑定到另外一个对象的任意一个属性上。它不单单可以应用于数据绑定,甚至可以将某个控件的样式绑定到另外一个控件上。这样使得在atlas中将一切关联起来变成可能。
在本文中,我将尝试分析一些atlas实现代码来解释atlas是如何完成binding的。
首先让我们察看一小段应用atlas binding的代码。这里将一个textbox的text属性和一个select list的selectedvalue属性绑定起来。无论你改变其中的哪个,在另一个上面都会有立刻得到体现。
html和aspx,定义textbox和select list。(注意必须声明一个scriptmanager服务器端对象,以引入atlas必须的javascript文件。)
<atlas:scriptmanagerid="scriptmanager1"runat="server"/>
<div>
inputanintegerfrom1to5.<br/>
<inputid="mytextbox"type="text"/><br/>
selectanitem.<br/>
<selectid="myselect">
<optionvalue="1">value1</option>
<optionvalue="2">value2</option>
<optionvalue="3">value3</option>
<optionvalue="4">value4</option>
<optionvalue="5">value5</option>
</select>
</div>
atlas脚本,将上面两个html控件“升级”成atlas控件。
<pagexmlns:script="http://schemas.microsoft.com/xml-script/2005">
<references>
</references>
<components>
<textboxid="mytextbox">
<bindings>
<bindingdatacontext="myselect"datapath="selectedvalue"property="text"direction="inout"/>
</bindings>
</textbox>
<selectid="myselect"/>
</components>
</page>
如上所示,我们只需要书写一小段简单的代码即可实现需要的绑定功能。
atlas是如何实现这些的呢?首先,atlas需要有一种途径来监听绑定控件的绑定属性的变化(除非你不需要atlas提供的自动绑定功能)。在atlas.js中定义了一个名为sys.inotifypropertychanged的接口,类似.net中提供的一样。对象可以实现这个接口以期让别的对象监听到自己的属性值的变化。atlas中所有组件的基类,sys.component,实现了这个接口。sys.component同样提供一个方法raisepropertychanged(propertyname),这个方法应该在每个属性的setter中被调用以发出inotifypropertychanged.propertychanged事件。
目前为止,我们可以看一下atlas控件中textbox的具体实现。看看textbox中是如何在相应的html事件发出时同样发出propertychanged事件的。
var_text;
var_changehandler;
this.get_text=function(){
returnthis.element.value;
}
this.set_text=function(value){
if(this.element.value!=value){
this.element.value=value;
this.raisepropertychanged('text');
}
}
this.initialize=function(){
sys.ui.textbox.callbasemethod(this,'initialize');
_text=this.element.value;
_changehandler=function.createdelegate(this,this._onchanged);
this.element.attachevent('onchange',_changehandler);
_keypresshandler=function.createdelegate(this,this._onkeypress);
this.element.attachevent('onkeypress',_keypresshandler);
}
this._onchanged=function(){
if(this.element.value!=_text){
_text=this.element.value;
this.raisepropertychanged('text');
}
}
可以看到,当text属性改变时,atlas发出了propertychanged事件,这就使绑定到这个属性成为可能。
而后atlas的绑定模型捕获到了这个事件,再根据binding声明查找出与其相关的目的对象以及相应的属性,并调用这个属性的setter来实现目的对象属性的变化。
如果源对象(source object)实现了inotifypropertychanged接口,并且改变的属性就是datapath 中指定的属性,同时direction 设定为in或者inout,atlas绑定将通过分析引入(incoming)的binding来处理propertychanged事件(参考下面将要介绍的evaluatein()方法)。
类似的,如果目的对象(target object)实现了inotifypropertychanged接口,并且改变的属性就是property中指定的属性,同时direction 设定为out或者inout,atlas绑定将通过分析流出(outgoing)的binding来处理propertychanged事件(参考下面将要介绍的evaluateout()方法)。
接下来让我们察看binding实现代码中的的公有方法和属性来分析一下atlas绑定的核心实现。在这里没有必要列出涉及绑定的全部代码,如果您感兴趣,可以用关键词sys.bindingbase和sys.binding 在atlas.js文件中进行搜索。首先是sys.bindingbase提供的方法和属性。
sys.binding(也在atlas.js中)中也有一些重要的方法/属性:
新闻热点
疑难解答