中文字幕二区_国产精品免费在线观看_黄色网站观看_人人草人人澡_日本真实娇小xxxx

您的位置: 首頁 > 技術文檔 > 網絡編程 > 十分鐘學會 xajax
網站(B/S開發(fā)中)cache應用 回到列表 URL重寫實現(xiàn)IHttpHandler接口
 十分鐘學會 xajax

作者:alphat 時間: 2006-06-23 文檔類型:翻譯 來自:藍色理想

第 1 頁 十分鐘學會 xajax [1]
第 2 頁 十分鐘學會 xajax [2]

call the function from a javascript event or function in your application:
從你程序中的js 事件或函數(shù)調用之前你已經注冊過的相對應函數(shù)

<div id="someelementid"></div>
<button onclick="xajax_myfunction(someargument);">

that's it. xajax takes care of most everything else. your biggest task is writing the php functions and returning xajax xml responses from them-- which is made extremely easy by the xajaxresponse class.
只需這些步驟。其他的交由xajax 去處理吧。你最主要的任務只是編寫php中的函數(shù),只要使它們能返回xajax的xml響應就行了,而這步可以用xajaxresponse 類輕松解決。

how do i update my content asynchronously?
如何異步更新我的內容?

perhaps the most unique feature of xajax is the xajaxresponse class. other ajax libraries require you to write your own callback handlers in javascript to process the data returned from an asynchronous request and to update the content. xajax, on the other hand, allows you to easily control your content from php. the xajaxresponse class allows you to create xml instructions to return to your application from your php functions. the xml is parsed by xajax message pump and the instructions tell xajax how to update the content and state of your application. the xajaxresponse class currently offers a number of useful commands, such as assign, which sets the specified attribute of an element in your page; append, which appends data to the end of the specified attribute of an element in your page; prepend, which prepends data to the beginning of the specified attribute of an element in your page; replace, which searches for and replaces data in the specified attribute of an element in your page; script, which runs the supplied javascript code; and alert, which shows an alert box with the supplied message text.
xajax最獨特的長處也許就是 xajaxresponse class了。其它的ajax庫需要你親自寫用js寫回調的句柄,來處理一個異步請求而且得到的數(shù)據(jù),并更新其內容。另一方面,xajax只需你簡單的控制好php的內容。然后通過xajaxresponse 類,使在你的php函數(shù)中創(chuàng)建xml指令返回給你的程序。xml將被 xajax的信息(pump)解析。其指令告知xajax將如何更新內容和你程序中的位置,F(xiàn)在xajaxresponse 已經提供了大量并有幫助的指令:http://www.flaspx.com/weblog/blog.php?bid=16  (略...付上詳細的xajaxresponse 類說明)

a single xml response may contain multiple commands, which will be executed in the order they were added to the response. for example, let's say that a user clicks on a button in your application. the onclick event calls the javascript wrapper for a php function. that wrapper sends an asynchronous request to the server through xmlhttprequest where xajax calls the php function. the php function does a database lookup, some data manipulation, or serialization. you use the xajaxresponse class to generate an xajax xml response containing multiple commands to send back to the xajax message pump to be executed:
一個單獨xml響應可以包含多條命令,他們將依據(jù)加入響應的順序來被執(zhí)行。舉個例子吧,讓我們假設一個用戶在你的程序中按下了一個按鈕。這個按下的事件將調用被js封裝好的php函數(shù)。這個封包通過 xmlhttprequest 發(fā)出了一個異步請求給服務器,讓xajax調用php函數(shù)。這個php函數(shù)做了一個查詢數(shù)據(jù)庫,一些數(shù)據(jù)處理或排序的操作。而你要用 xajaxresponse 類來產出一個 xajax 的xml響應,它包含了多條命令。送給xajax 信息pump來執(zhí)行:

$objresponse = new xajaxresponse();

$objresponse->addassign("myinput1","value",$datafromdatabase);
$objresponse->addassign("myinput1","style.color","red");
$objresponse->addappend("mydiv1","innerhtml",$datafromdatabase2);
$objresponse->addprepend("mydiv2","innerhtml",$datafromdatabase3);
$objresponse->addreplace("mydiv3","innerhtml","xajax","<strong>xajax</strong>");
$objresponse->addscript("var x = prompt(\"enter your name\");");

return $objresponse->getxml();

the xajax message pump would parse the xml message and perform the following:
xajax信息pump將會解析下列xml信息,并執(zhí)行以下操作:

the value of the element with id myinput1 would be assigned to the data in $datafromdatabase.
將變量$datafromdatabase賦值給id為myinput1的value元素。

the color of the text in the element with id myinput1 would be changed to red.
id為myinput1的字體顏色元素將被換成紅色.

the data in $datafromdatabase2 would be appended to the innerhtml of the element with id mydiv1.
$datafromdatabase2,此數(shù)據(jù)將被追加到id為mydiv1的innerthml元素的結束部位

the data in $datafromdatabase3 would be prepended to the innerhtml of the element with id mydiv2.
$datafromdatabase3,此數(shù)據(jù)將被添加到id為mydiv2的innerthml元素的開始部位

all occurrences of "xajax" in the innerhtml of the element with id mydiv3 would be replaced with "xajax"; making all of the instances of the word xajax appear bold.
id為mydiv3的innerhtml元素中所有的 "xajax" 將被替換成 "xajax",使所有的xajax以粗體顯示。

a prompt would be displayed asking for the user's name and the value returned from the prompt would be placed into a javascript variable named x.
會有一個輸入框彈出,并詢問用戶姓名。從輸入框取得的變量將轉換成js變量并命名為x。
all of this is implemented on the server side in the php function by forming and returning an xajax xml response.
所有這些組成了php函數(shù)在服務器端被執(zhí)行,然后傳回一個xml響應。

出處:藍色理想
責任編輯:moby

上一頁 十分鐘學會 xajax [1] 下一頁

◎進入論壇網絡編程版塊參加討論

關鍵字搜索 常規(guī)搜索 推薦文檔
熱門搜索:CSS Fireworks 設計比賽 網頁制作 web標準 用戶體驗 UE photoshop Dreamweaver Studio8 Flash 手繪 CG
站點最新 站點最新列表
周大!熬•自然”設計大賽開啟
國際體驗設計大會7月將在京舉行
中國國防科技信息中心標志征集
云計算如何讓安全問題可控
云計算是多數(shù)企業(yè)唯一擁抱互聯(lián)網的機會
阿里行云
云手機年終巨獻,送禮標配299起
阿里巴巴CTO王堅的"云和互聯(lián)網觀"
1499元買真八核 云OS雙蛋大促
首屆COCO桌面手機主題設計大賽
欄目最新 欄目最新列表
淺談JavaScript編程語言的編碼規(guī)范
如何在illustrator中繪制臺歷
Ps簡單繪制一個可愛的鉛筆圖標
數(shù)據(jù)同步算法研究
用ps作簡單的作品展示頁面
CSS定位機制之一:普通流
25個最佳最閃亮的Eclipse開發(fā)項目
Illustrator中制作針線縫制文字效果
Photoshop制作印刷凹凸字體
VS2010中創(chuàng)建自定義SQL Rule
>> 分頁 首頁 前頁 后頁 尾頁 頁次:2/21個記錄/頁 轉到 頁 共2個記錄

藍色理想版權申明:除部分特別聲明不要轉載,或者授權我站獨家播發(fā)的文章外,大家可以自由轉載我站點的原創(chuàng)文章,但原作者和來自我站的鏈接必須保留(非我站原創(chuàng)的,按照原來自一節(jié),自行鏈接)。文章版權歸我站和作者共有。

轉載要求:轉載之圖片、文件,鏈接請不要盜鏈到本站,且不準打上各自站點的水印,亦不能抹去我站點水印。

特別注意:本站所提供的攝影照片,插畫,設計作品,如需使用,請與原作者聯(lián)系,版權歸原作者所有,文章若有侵犯作者版權,請與我們聯(lián)系,我們將立即刪除修改。

您的評論
用戶名:  口令:
說明:輸入正確的用戶名和密碼才能參與評論。如果您不是本站會員,你可以注冊 為本站會員。
注意:文章中的鏈接、內容等需要修改的錯誤,請用報告錯誤,以利文檔及時修改。
不評分 1 2 3 4 5
注意:請不要在評論中含與內容無關的廣告鏈接,違者封ID
請您注意:
·不良評論請用報告管理員,以利管理員及時刪除。
·尊重網上道德,遵守中華人民共和國的各項有關法律法規(guī)
·承擔一切因您的行為而直接或間接導致的民事或刑事法律責任
·本站評論管理人員有權保留或刪除其管轄評論中的任意內容
·您在本站發(fā)表的作品,本站有權在網站內轉載或引用
·參與本評論即表明您已經閱讀并接受上述條款
推薦文檔 | 打印文檔 | 評論文檔 | 報告錯誤  
專業(yè)書推薦 更多內容
網站可用性測試及優(yōu)化指南
《寫給大家看的色彩書1》
《跟我去香港》
眾妙之門—網站UI 設計之道
《Flex 4.0 RIA開發(fā)寶典》
《贏在設計》
犀利開發(fā)—jQuery內核詳解與實踐
作品集 更多內容

雜⑦雜⑧ Gold NORMANA V2