Dojo   发布时间:2019-10-11  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Using the Dojo JavaScript Library to Build Ajax Applications一书翻译完毕大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

由本人独立翻译的《Using the Dojo JavaScript Library to Build Ajax Applications》已经全部翻译完毕并交付出版社审校,待审校结束后将由机械工业出版社华章公司出版。

以下为该书的封面:

以下为该书的英文目录:

I: A Dojo Tutorial


1 Understanding Dojo: A Tutorial 3


1.1 Introduction to the Tutorial 3
1.1.1 Goals for this Tutorial 4
1.1.2 Goals for Using Dojo 4
1.2 A Standard HTML Data Entry Form 5
1.2.1 First and last name 6
1.2.2 User Name 7
1.2.3 Email Address 8
1.2.4 Address 8
1.2.5 State 8
1.2.6 City 10
1.2.7 Zip Code 10
1.2.8 service Date 11
1.2.9 Comments 11
1.3 The Plan for Enhancing the Form 12
1.3.1 Including Dojo in the Form 12
1.3.2 Adding Client-side Validation 13
1.3.3 Adding Server-side Features 13
1.3.4 Using Additional Specialized Dojo Widgets 13
1.3.5 Processing the Form 14
1.4 GetTing and Running the source Code 14
1.5 Tutorial Step 1—Including Dojo 15
1.5.1 Download or Create the source Files 15
1.5.2 Include the Code for the Dojo Toolkit 19
1.5.3 Include Dojo Style Sheets 20
1.5.4 Review All the Code Changes 21
1.5.5 Run the New Page 22

2 Using Dojo for Client-side Validation 25


2.1 ValidaTing Form Fields 25
2.2 Tutorial Step 2—Adding Client-side Validation 26
2.2.1 Validate the First Name Field 27
2.2.2 ValidaTing the last name Field 30
2.2.3 ValidaTing the User Name Field 31
2.2.4 ValidaTing the Email Address Field 31
2.2.5 ValidaTing the Address Field 32
2.2.6 ValidaTing the City Field 33
2.2.7 ValidaTing the Zip Code Field 33


3 Using Dojo to Work with the Server 35


3.1 Adding Server-side Features 35
3.2 Tutorial Step 3a—Adding Server-side Validation 36
3.2.1 Assign Event Handler Function 36
3.2.2 Make a Call to the Server 38
3.3 Tutorial Step 3b—Retrieving Data from
the Server 43
3.3.1 @R_772_10288@ct Appropriate Widget for
the City Field 43
3.3.2 Get the Value of State and Send
to the Server 45


4 Using Dojo Widgets 51


4.1 Adding Dojo Widgets to the Page 51
4.1.1 Dijit—The Dojo Widget Module 52
4.2 Tutorial Step 4—Using Dojo Widgets 52
4.2.1 Use the Dojo DateTextBox Widget 53
4.2.2 Use the Dojo Rich Text Editor Widget 55


5 Processing Forms with Dojo 59


5.1 Using Dojo to Process Forms 59
5.2 Tutorial Step 5—Processing the Form 60
5.2.1 CreaTing a Dojo Form Widget 60
5.2.2 Intercept Form Submission 61
5.2.3 check That All Form Elements Are Valid 62
5.2.4 SubmitTing the Form to the Server 63

II: Dojo Widgets


6 Introduction to Dojo Widgets 67


6.1 what Are Widgets? 67
6.2 what Are Dojo Widgets? 68
6.3 Components of a Dojo Widget 70
6.3.1 Widget HTML 70
6.3.2 Widget Styles 74
6.3.3 JavaScript Component of a Widget 76
6.3.4 Dojo Widget Hierarchy 78
6.3.5 Visual Overview of Dojo Widgets 83
6.3.6 Building Your Own Widgets 90


7 Dojo Form Widgets 91


7.1 Standard Forms and Dojo Form Widgets 91
7.1.1 The dijit.form._FormWidget Class 92
7.2 The Dojo Form Widget Explained 94


8 Dojo Layout Widgets 137


8.1 Understanding Page Layout 137
8.1.1 The dijit.layout._LayoutWidget Class 138
8.2 Explanation of Dojo Layout Widgets 139


9 Other Specialized Dojo Widgets 155


9.1 what Are Specialized Widgets? 155
9.2 Menu Widget 156
9.2.1 dijit.Menu 157
9.2.2 dijit.MenuItem 157
9.2.3 dijit.MenuSeparator 157
9.2.4 dijit.PopupMenuItem 158


III: Dojo in Detail


10 what Is Dojo? 189


10.1 History of JavaScript and AJAX 189
10.2 History of Dojo 191
10.3 Purpose of Dojo 191

10.4 Description of Dojo 192
10.5 what Problems Does Dojo Solve? 193
10.6 Who Should Use Dojo? 194
10.7 Licensing 195
10.8 Competitors and Alternatives 195
10.9 The Future of Dojo 197


11 Technical Description of Dojo 199


11.1 what You Get in the Dojo Download 199
11.2 Organization of Dojo source Code 201
11.2.1 First-level Directories 201
11.2.2 Digging Deeper into the Dojo Directory 202
11.3 Dojo Modules and Features 203
11.3.1 Naming Conventions and Name Space 204
11.3.2 Dojo Base Module 205
11.3.3 Dojo Core Modules 217


12 Objects and Classes 223


12.1 Objects Explained 223
12.1.1 CreaTing Objects 224
12.1.2 Encapsulation 224
12.1.3 Object Templates 225
12.1.4 JavaScript Prototypes 227
12.2 Using Dojo to Work with Objects 228
12.2.1 Dojo Function: dojo.declare 229
12.3 Defining a Class 229
12.3.1 Superclasses and Inheritance 231
12.3.2 API for dojo.declare 231
12.3.3 Other Dojo Functions 233
12.3.4 Object Graphs and Dot Notation 234


13 Strings and JSON 239


13.1 Text Strings 239
13.1.1 Dojo Function: dojo.String.pad 240
13.1.2 Usage Example for dojo.String.pad 241
13.1.3 Dojo Function: dojo.String.substitute 241
13.1.4 Usage Example for dojo.String.substitute 243

13.2 JSON 244
13.2.1 Dojo Function: dojo.toJson 246
13.2.2 Usage Example for dojo.toJson 246
13.2.3 Dojo Function: dojo.fromJson 247


14 Events and Event Handling 249


14.1 Description of the Event Model 249
14.1.1 what Are Events? 250
14.1.2 Additional Dojo Events 251
14.2 Defining and Assigning Event Handlers 252
14.2.1 Using dojo.connect to Assign
Event Handlers 252
14.2.2 Usage Example for Assigning
Event Handlers 253
14.3 RepresenTing an Event as an Object 254
14.4 Using Aspect Oriented ProgrAMMing in Dojo 256


15 Ajax RemoTing 259


15.1 RemoTing 259
15.2 Review of XMLhttprequest (or XHR for Short) 260
15.2 The dojo.xhrGet Function 261
15.3.1 Parameters in Detail 264
15.4 dojo.xhrPost 264
15.4.1 Usage Example—Error Handling 268
15.5 Working with Forms 269
15.5.1 Dojo Function dojo.formToObject 270
15.5.2 Dojo Function dojo.objectToQuery 271
15.5.3 Dojo Function dojo.formToQuery 272
15.5.4 Dojo Function dojo.formToJson 274
15.5.5 Dojo Function dojo.queryToObject 274


16 Working with the DOM 277


16.1 Finding Needles in the DOM Haystack 277
16.2 Dojo Query 278
16.2.1 CSS @R_772_10288@ctors 279
16.2.2 Using @R_772_10288@ctors in dojo.query 282
16.2.3 Using DOM Elements Found by dojo.query 283

16.3 Animation 283
16.3.1 Understanding Animation 283
16.3.2 Dojo Animation Function 285
16.3.3 Standard Animation Effects 286


17 TesTing and Debugging 293


17.1 TesTing 293
17.1.1 Unit TesTing 294
17.1.2 DOH—The Dojo Unit TesTing Framework 294
17.1.3 Other Types of TesTing 298
17.2 Logging 298
17.2.1 Basic Logging 299
17.2.2 Advanced Logging 300


Index 303

大佬总结

以上是大佬教程为你收集整理的Using the Dojo JavaScript Library to Build Ajax Applications一书翻译完毕全部内容,希望文章能够帮你解决Using the Dojo JavaScript Library to Build Ajax Applications一书翻译完毕所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。