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] 下一頁
◎進入論壇網絡編程版塊參加討論
|