锐英源软件
第一信赖

精通

英语

开源

擅长

开发

培训

胸怀四海 

第一信赖

当前位置:锐英源 / 英语翻译 / ASP.NET的AJAX客户端控件
服务方向
人工智能数据处理
人工智能培训
kaldi数据准备
小语种语音识别
语音识别标注
语音识别系统
语音识别转文字
kaldi开发技术服务
软件开发
运动控制卡上位机
机械加工软件
软件开发培训
Java 安卓移动开发
VC++
C#软件
汇编和破解
驱动开发
联系方式
固话:0371-63888850
手机:138-0381-0136
Q Q:396806883
微信:ryysoft

英文原文

 

锐英源精品开源心得,转载请注明:“锐英源www.wisestudy.cn,孙老师作品,电话13803810136。”需要全文内容也请联系孙老师。

Introduction简介

This article explains the development of client controls using the new AJAX framework. I have attached some sample client controls which are developed using the AJAX library. This article could be a good starting point for learning about AJAX client components development.本文介绍了使用最新的AJAX架构来开发客户端控件。本文对于学习客户端组件开发的朋友来说是非常好的起点。

Background背景

JavaScript is an Object Oriented Language, but the approach is very different for other languages like C# or C++. JavaScript doesn't have a concept of classes, so objects are not instances of classes. JavaScript objects can be considered as a collection of name and value pairs. JavaScript是面向对象语言,但是具体方法和其它语言,比如C#或C++,差别非常大。JavaScript并没有类的概念,所以对象不是类的实例。JavaScript对象能以名称和值对的集合来理解。
Objects can be created in different ways in JavaScript. For example: JavaScript里的对象能以不同的方法来创建。比如:

                       var table = new Object();
                       //or 
                       var table = {};
                       Properties can be added to this object:这个对象的属性能按如下方式添加: 
                       table.Name = "Ikea Comp table";
                       //or或 
                       table["Name"] = "Ikea Comp table";

If a property has not been defined before, then it will be created during assignment.
Similarly, functions can be added to the above table object:如果属性在以前没有定义上,在赋值时就会创建出来。同理,也能向table对象添加函数:
添加函数

                       table.GetName = function()
{
return this.Name;
}
Another way to create objects in JavaScript is:在JavaScript里创建对象的另外一个方法是:

//this function can be represented  
//as a class with properties and functions inside it.这个函数能以带有内置属性和函数的类的形式重新编写。 
function Cat()
{
this.name = "kitty" 
this.type = "big";
this.Details = function ()
{
alert(this.name +" " +this.type);
}
}
//This method is shared within all objects 
//Prototype is used to define the template of the object and used  
//to implement inheritance. Reference to objects and arrays added to  
//the prototype object are shared between all the instances.  
//functions defined in prototype are also shared between objects and it  
//saves a little memory but are a little slow to call as compared to  
//functions defined in constructor 
//another way to write Cat.prototype.speak = function()....
下面方法是所有对象共享的。Prototype用于定义对象的模板且用于实现继承。对添加到原型里的对象和数组的引用被所有实例共享。在原型里定义的函数同
样在对象之间共享且它会节省些内存,但是在调用上比在构造函数里写的函数会慢些。 
另外的写法有Cat.prototype.speak = function() 
Cat.prototype={
speak : function()
{
alert('meaaoooww');
}
}
//Static Function on Cat Object Cat对象的静态函数 
Cat.StaicFunc = function()
{
//this.name or any other property is not accessible  
//because it is a static method this.name或其它别的属性是不可访问的,因为它们是静态方法 
alert("static function called");
}
//object of class;类的对象
var cat = new Cat();  
cat.speak();
cat.Details();
Cat.StaicFunc();
Inheitance can be implemented in JavaScript as
function WildCat()
{
Cat.call(this); //Calling the base constructor调用基类的构造函数 
}
WildCat.prototype  = new Cat();
//Overriding the base function speak覆盖基类的函数speak 
WildCat.proptotype.speak = function()
{
alert('this is wild cat..Beware');
}

A quicker way to create an object is:创建对象的快速方法是:

var team = {name:'', members:[], count:function() { return members.length }}

The above object is created using the JSON format. To learn more about the JSON format, "Google" for it :-).上面的对象以JSON格式创建。
JavaScript in the AJAX Library在AJAX库里的JavaScript
The ASP.NET AJAX library extends the JavaScript type system to simulate object oriented constructs that are not currently available in JavaScript like interfaces, classes, and enumerations. Classes are created in a similar fashion as in JavaScript. To create a class in the AJAX framework:ASP.NET AJAX库扩展了JavaScript类型系统来模拟面向对象的体系,以前JavaScript不支持的比如接口、类和枚举,都被扩展加入了。类的创建和JavaScript的风格类似。在AJAX框架里创建类如下:

                     
Type.registerNamespace('Sample');
Sample.Vehicle = function ()
{
this._name;
this._type;
}
Sample.Vehicle.prototype = {
get_name : function()
{
return this._name;
},
set_name : function (value)
{
this._name = value;
},
get_type : function()
{
return this._type;
},
set_type : function(value)
{
this._type = value;
},
Honk : function()
{
alert('Loud noise coming...cant you hear that');
}
}
Sample.Vehicle.registerClass('Sample.Vehicle');
In the above example, you just need to call registerNamespace and registerClass to register your namespaces and classes with the AJAX Library. The above class has two properties and a function. The get_ and set_ format should be used to get and set the values of properties.上例中,你只需要调用registerNamespace和registerClass来注册你的命名空间和类到AJAX库里即可。上面类里有2个属性和一个函数。get_和set_形式在获取和设置属性时使用。
The format for registerClass is something like: registerClass的形式如下:

NameofClass.registerClass('NameofClass', BaseClass, InterfacesImplemented)

An interface can be defined as:接口可按如下形式定义:

                       Sample.IDrive =  function()
{
throw Error.notImplemented();
}
Sample.IDrive.prototype = {
Drive : function ()
{
throw Error.notImplemented();
}
}
Sample.IDrive.registerInterface('Sample.IDrive');
To inherit a class from the above Vehicle class and implement the interface为了从上面Vehicle类继承和实现接口:

Sample.Honda = function()
{
Sample.Vehicle.initializeBase(this);
//if base class takes arguments in constructor 
//then they can also be passed    
//Sample.Vehicle.initializeBase(this, [arg1,arg2,...]); 
}
Sample.Honda.prototype = {
Honk: function()
{
alert(this._name + ' honking ...');
//To call base method        
//Sample.Honda.callBaseMethod(this, 'Test',[arg1,arg2,…]); 
} ,
 Drive : function()
{
alert('Driving...');
}
}
Sample.Honda.registerClass('Sample.Honda',Sample.Vehicle, Sample.IDrive);

To add/remove an event, use add_eventname/remove_eventname. For example:为了添加/删除事件,使用add_eventname/remove_eventname.比如:

友情链接
版权所有 Copyright(c)2004-2021 锐英源软件
公司注册号:410105000449586 豫ICP备08007559号 最佳分辨率 1024*768
地址:郑州大学北校区院(文化路97号院)内