首页 > 开发 > 综合 > 正文

三层Web体系结构里的两种数据绑定模式

2024-07-21 02:28:26
字体:
来源:转载
供稿:网友

  引言

  本文我将介绍在三层web体系开发中的两种数据绑定模式,然后在不超过你已经会用的控件知识的情况下,来介绍能够极大减少这种数据绑定模式的替代品--xlib库文件。具体的说,本文开始我们介绍在三层体系结构里常规的数据绑定方法,然后介绍xlib是如何提高这种绑定效率的。

  1、 数据绑定流程

  在三层web体系结构里,通常有四步来完成数据绑定任务:

  1)从数据库里加载数据到业务逻辑对象

  2)在web窗体上放置web控件并使用业务逻辑对象进行填充数据。

  3)将web控件的值拷贝到业务逻辑对象的属性里

  4)保存业务逻辑对象的属性值到数据库。

  以具体的customer为例,在三层应用程序里最简单的数据绑定模式的步骤如下:

  1)从数据库customer表里加载合适的顾客记录

  2)将顾客记录绑定到customer业务对象上

  3)将customer业务对象绑定到web控件上

  4)用户在窗体里输入数据并单击submit进行提交数据

  5)将web控件的更新事件绑定到customer对象上

  6)把customer上的信息保存到表里

  7)将表里的信息保存到customer上

  有多种方式执行这个流程,我概括起来有三种:

  1、显示生成数据绑定方式--使用大家都熟悉的前台方式

  2、microsoft的方式--使用类型化的dataset和formview

  3、xlib方式--使用反射技术和其他的.net特性来分析绑定--在运行时获取对象

  1.2 代码--业务逻辑对象和web 页面

  为了具体说明这三种方式的使用方法,我将使用customer类和editcustomer页面作为演示。下面是一些代码,它将说明具体在什么地方进行数据绑定。

  通常,customer类看起来类似如下:

public class customer
{
 //list all properties
 //crud methods
 public void load()
 {
  //binding #1
  //copy database record values into properties
 }
 public void save()
 {
  //binding #4
  //copy properties values into database record
 }

 public void delete() ;
 //other methods specific to customer
 public string getcustomerfullname()..
}

  编辑顾客页面的代码类似如下:

//页面的一些指令
//与form窗体有关的一些顾客属性
//提交和取消按钮

  编辑用户信息的后台代码类似如下:

public partial class editcustomer
{
 protected void page_load(object sender, eventargs e)
 {
  if (!ispostback){
   //check if adding new customer or updating
   if (_isupdatemode)
    loaddata();
  }
 }

 protected void btnsubmit_click(object sender, eventargs e)
 {
  if (!page.isvalid)
   return;
  savedata();

  //go back
 }

 private void loaddata()
 {
  customer customer=new customer();
  customerid=_customerid;
  customer.load();

  //binding #2
  //copy customer properties into control values
 }

 private void savedata()
 {
  customer customer=new customer();
  if (_isupdatemode)
  {
   customer.id=_customerid;
   customer.load();
  }

  //binding #3
  //copy control values into customer properties
  customer.save();
 }
}

  2 三种数据绑定方式

  2.1 方法1:显式声明数据绑定方式

  编辑顾客信息的方法之一是显式的数据绑定方式,这意味这对于每一个数据绑定都需要执行前面说的四个步骤,例如对于customer的load方法,可能的代码类似如下:

public void load()
{
 …
 //load customer record using data reader
 _firstname=(string)datareader["firstname"];
 _lastname=(string)datareader["lastname"];
 …
}

  在这种情况下,当customer对象有更多属性时,您就需要编写更多的代码来完成数据绑定功能。如果您想为customer新增加一个属性,你不得不在6个地方进行更改:

  1)数据库

  2)数据绑定1--数据业务逻辑对象

  3)数据绑定2--业务逻辑对象在绑定到web控件上

  4)在web窗体上添加新的控件

  5)数据绑定3--web控件绑定到业务逻辑上

  6)数据绑定4--业务逻辑到数据库上

  正如您所看到的上面方法的缺点--重复工作大且维护困难

  2.2 使用微软的方式--类型化的dataset和formview

  对于这个方法,微软已经为我们提供了很多例子了,,如果您的程序足够简单,那么您就可以从customer表里生成一个类型化的dataset,并将其绑定到formview上,由formview来执行添加和编辑customer对象的功能,您可以在下面两个地方发现如何使用他们:

creating dal using typed datasets
modifying data using formview web control

  对于 database和business对象之间的绑定,您可以使用类型化的dataset向导完成,对于busiess和web控件之间的绑定您可以使用formview控件的inseritemtemplate和edititemtemplate 模板完成,并制定绑定规则,类似代码如下:

<asp:textbox id="txtlastname" text='' runat="server" />

  您可能已经注意到了在微软提供的例子里使用这种方式对简单应用程序来说,工作的确实相当的好,但是对于稍微复杂的应用程序来说,您就需要不断扩展自己的代码。

  这种方式可以简单数据的维护,例如你需要为customer增加一个新的属性,你就只需要更改三处就可以了:

  1、数据库

  2、web form - edititemtemplate

  3、web form - insertitemtemplate

  2.3 xlib方式的绑定

  xlib在同时能够提供前面介绍的两种绑定方式外,还增加了数据维护方面的灵活性。xlib使用反射技术来自动从业务逻辑对象到数据库,到web控件之间的映射。

  在执行数据库到业务逻辑对象方面,它使用了xbusinessobjectbinder对象,下面的代码片断样式了customer对象的代码:

public class customer
{
 …
 public void load()
 {
  datareader=new xdatareader();

  //load data using auto-generated query into xdatareader
  //xdatareader works just like data reader - except it automatically
  //converts database values types into inulllable c# types

  //binding #1
  xbusinessobjectbinder.fromdatareader(this, datareader);
 }

 public void save()
 {
  xdatawriter datawriter=new xdatawriter();
  //xdatawriter automatically generates insert/update/delete sql s
  //statements

  //binding #4
  xbusinessobjectbinder.todatawriter(this, datawriter)

  datawriter.update();
 }
}

  对于业务逻辑到web控件的绑定,它提供了xwebcontrolsbinder 控件,下面代码片断显示了顾客编辑页面的代码:

public partial class editcustomer
{
 protected void page_load(object sender, eventargs e)
 {…}

 protected void btnsubmit_click(object sender, eventargs e)
 {…}

 private void loaddata()
 {
  customer customer=new customer();
  customerid=_customerid;
  customer.load();

  //binding #2
  xwebcontrolsbinder.fromobject(this, customer);
 }

 private void savedata()
 {
  customer customer=new customer();
  if (_isupdatemode)
  {
   customer.id=_customerid;
   customer.load();
  }

  //binding #3
  //copy control values into customer properties
  xwebcontrolsbinder.toobject(this, customer);

  customer.save();
 }
}

  正如您所看到的,这种方法既去掉了第一种方法的缺点,又具有第二中方法的有点。

菜鸟学堂:
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表