`

dojo1.7翻译 Hello,World

    博客分类:
  • Dojo
阅读更多

原文地址:http://dojotoolkit.org/reference-guide/1.7/quickstart/helloworld.html#quickstart-helloworld

 

这篇文章是为那些dojo新手而写的。这里会尽可能的介绍一些dojo的内容,但不可能非常的详细,因为如果太详细就会使新手误解dojo是这些的复杂这么的难学,从而可能会吓退部分的初学者。如果想了解更多的内容,就去找专门的API或文章了。

 

所需要的环境

  1. 要有dojo.从dojotoolkit.org下载最新版的。
  2. 要有一个web服务器。dojo的很多功能要部署在服务器上才出展现
  3. 要有一门语言的容器ASP,PHP,JSP的都行。因为dojo的ajax功能需要这种客户端-服务端架构
  4. IE,firefox,opera,safar浏览器。。。

 

配置dojo

在web服务器里我们来创建一个文件夹,起名HelloWorldTutorial,在里面再创建一个子文件夹dojoroot,把dojo的下载文件解压后放到这个子文件夹下,最后效果如图

 

开始来dojo了

好了,我们开始来设计我们的html页面了。创建一个页面,使内容如下

<html>
<head>
  <title>Dojo: Hello World!</title>

  <!-- SECTION 1 -->
  <style type="text/css">
      @import "dojoroot/dijit/themes/tundra/tundra.css";
      @import "dojoroot/dojo/resources/dojo.css"
  </style>
  <script type="text/javascript" src="dojoroot/dojo/dojo.js"
    data-dojo-config="parseOnLoad: true"></script>
</head>

<body class="tundra">
</body>
</html>

 从上面的代码中可以看出,这只是一个静态的页面,里面引入了两个css,一个dojo的js

 

创建一个铵钮控件

好,第一个令人兴奋的效果就要来了。现在我们要创建一个按钮的控件,他会给出鼠标不同操作的不同效果新体验。

第一步,要让dojo去加载一个合适的模块。在页面头中,我们加入新的代码。如下显示

<!-- SECTION 2 -->
<script type="text/javascript">
   // Load Dojo's code relating to the Button widget
   dojo.require("dijit.form.Button");
</script>

 代码中的dojo.require就是去加载新按钮控件,如果没有这句代码就将不会有效果的.

第二步,在页面中加入以下代码

<button data-dojo-type="dijit.form.Button" id="helloButton">Hello World!</button>

 在上面代码中,我们要注意的是data-dojo-type这个属性。这个属性就是用于通知dojo如何来操作当前的元素。上面的代码就是让dojo对当前元素进行dijit.form.button的相关处理.只要发现了data-dojo-type这处属性就会对其进行相应的操作

 

给控件加上事件

现在要给控件加上一个事件了,虽然我们可以给其加上一个onClick事件,但是我们还有另一种更有效的处理方法。就是加入dojo事件系统。

最简单的加入方法就是给按钮加入一个脚本标签。但不是任意的标签。这里的是dojo/method的脚本标签,参考以下代码

<button data-dojo-type="dijit.form.Button" id="helloButton">
    Hello World!
    <script type="dojo/method" data-dojo-event="onClick">
       alert('You pressed the button');
    </script>
</button>

简单吧。把脚本标签写在元素内部在某种意义上来说是有好处的。这样可以充分的使用二级事件。比如,对于能检测到是否在这个元素上进行了ctrl或shift等组合键的操作等等。如果你使用过这种二级事件处理的话,你将会知道,IE和Firefox是有不同的处理方式的。而对于dojo来说,处理的代码都是一样的。这是dojo很强的地方。

 

从服务器中读数据

点击按钮会弹出提示信息的效果已经做出来了。那现在来做个从服务器中取数据的效果。

dojo有一个简单的方法可以完成这个功能,使用dojo.xhrGet。

现在我们将从服务器中取文件response.txt这个文件中的内容。

第一步,我们要创建一个回调函数来处理从服务器读取到的数据。我们将它alert出来。加入以下语句

 

<script type="text/javascript">
     function helloCallback(data, ioArgs){
        alert(data);
     }
     function helloError(data, ioArgs){
        alert('Error when retrieving data from the server!');
     }
</script>

 

 注意:这两个方法一个都不能少。第一个是处理成功返回的数据。第二个是绑定dojo的io功能的。

第二步,要把按钮的事件处理由提示固定信息更改成提示从服务器读取的信息。将脚本

 

<script type="dojo/method" data-dojo-event="onClick">
  alert('You pressed the button');
</script>

 

 改成

 

<script type="dojo/method" data-dojo-event="onClick">
 dojo.xhrGet({
      url: 'response.txt',
      load: helloCallback,
      error: helloError
 });
</script>

 

 上面的代码就完成这个功能了,它告诉dojo,使用url的方式去取服务器内容,用load的函数来处理取到的内容。如果访问出错,就用error函数来处理错误信息。

 

 

通过GET方法向服务器发送信息

现在我们使用GET方法向服务器发送信息,这在服务器里要有一个文件,起名为HelloWorldResponseGET.jsp文件

当然了,如果你用别的语言,那就可能是.asp .php .cfm等类型了

现在由于我们要发送信息,所以我们要加入一个输入框,把以前的代码

 

<button data-dojo-type="Button" widgetId="helloButton">
  <script type="dojo/method" data-dojo-event="onClick">
  dojo.xhrGet({
      url: 'response.txt',
      load: helloCallback,
      error: helloError
  });
  </script>
</button>

 

 改成

 

<button data-dojo-type="dijit.form.Button" id="helloButton">
   Hello World!
   <script type="dojo/method" data-dojo-event="onClick">
   dojo.xhrGet({
      url: 'HelloWorldResponseGET.php',
      load: helloCallback,
      error: helloError,
      content: {name: dojo.byId('name').value }
   });
   </script>
</button>
Please enter your name: <input type="text" id="name" />

 

 对于以上的url地址,要注意对应自己所选用的语言。

从上面的代码中我们可以发现,现在多个一个属性。content,这个属性可以含有合适的参数以传后服务器中,name就是后台服务器所要接的参数。如果后台服务器要接的参数是myName,则代码就要改成 

 

content: {myName: dojo.byId('name').value }

 

 dojo.byId这个方法我们还没介绍,他的功能就是相当于document.getElementById的功能

好了,功能完成了,你输入信息再点击按钮后就会返回信息Hello <name>, welcome to the world of Dojo!, 其中name就是你所输入的内容

相应的服务器端文件内容是

PHP服务器

 

<?php
/*
* HelloWorldResponseGET.php
* --------
*
* Print the name that is passed in the
* 'name' $_GET parameter in a sentence
*/

header('Content-type: text/plain');
print "Hello {$_GET['name']}, welcome to the world of Dojo!\n";
?>

 

 ASP服务器

 

<%
'
' HelloWorldResponseGET.asp
' --------
'
' Print the name that is passed in the
' 'name' GET parameter in a sentence


response.ContentType="text/plain"
response.write("Hello " & request.querystring("name") & ", welcome to the world of Dojo!\n")
%>

 COLDFUSION服务器

 

<!---
/*
* HelloWorldResponseGET.cfm
* --------
*
* Print the name that is passed in the
* 'name' GET parameter in a sentence
*/
--->
<cfsetting showDebugOutput="No">
Hello, #url.name#, welcome to the world of Dojo!
</cfsetting>

 JAVA服务器

 

<%
/*
' HelloWorldResponseGET.jsp
' --------
'
' Print the name that is passed in the
' 'name' GET parameter in a sentence
*/

response.setContentType("text/plain");
%>
Hello <%= request.getParameter("name") %> , welcome to the world of Dojo!

 PERL服务器

 

#!/usr/bin/perl
#
#  ' HelloWorldResponseGET.pl
#  ' --------
#  '
#  ' Print the name that is passed in the
#  ' 'name' GET parameter in a sentence
#
use strict;
use CGI;
my $cgi = CGI::new();
print $cgi->header(-type => "text/html; charset=utf-8");
print "Hello " . $cgi->param('name') . ", welcome to the world of Dojo!\n";

 

使用POST方式提交内容到服务器中

要改成POST方式提交非常的简单,稍微改下方法就行了。

第一步,加入form元素

把代码

 

Please enter your name: <input type="text" id="name" />

 改成

 

<form id="myForm" method="POST">
  Please enter your name: <input type="text" name="name" />
</form>

 第二步,把方法

 

<script type="dojo/method" data-dojo-event="onClick">
      dojo.xhrGet({
         url: 'HelloWorldResponseGET.php',
         load: helloCallback,
         error: helloError,
         content: {name: dojo.byId('name').value }
      });
</script>

 改成

 

<script type="dojo/method" data-dojo-event="onClick">
 // Don't forget to replace the value for 'url' with
 // the value of appropriate file for your server
 // (i.e. 'HelloWorldResponsePOST.asp') for an ASP server
  dojo.xhrPost({
      url: 'HelloWorldResponsePOST.php',
      load: helloCallback,
      error: helloError,
      form: 'myForm'
 });
</script>

 从上面代码可以看出来,我们改了一下方法名,把xhrGET改成了xhrPost,把content属性删除了。加入了表单元素。

再就是改下服务器中的处理文件了,这个和GET方法中的处理差不多,就是把取GET的改成取POST的。

具体服务器文件实现方式略去。

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics