Tải bản đầy đủ (.pdf) (3 trang)

Tài liệu Processing Validated Data pdf

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (14.5 KB, 3 trang )


< Day Day Up >

Processing Validated Data
The last task for our application is to send all the validated data to a server for processing.
We'll use a LoadVars object to accomplish this goal.
1. Open validate6.fla.
We'll continue building on the project from the preceding exercise.
2. With the Actions panel open, select Frame 1 of the Actions layer and add the
following script at the top of the current script, just below the stop() action:
3.
4. var registrationData:LoadVars = new LoadVars();
5.

This creates a new LoadVars object named registrationData. In the next step we
will add a script that places our validated data into this object and sends it to the
server.
3. Add the following script to the else leg of the validateForm() function:
4.
5.
6. registrationData.name = name_ti.text;
7.
8. registrationData.email = email_ti.text;
9.
10. registrationData.state = state_ti.text;
11.
12. registrationData.zip = zip_ti.text;
13.
14. registrationData.sendAndLoad("
registrationData,
15.


16. "POST");
17.

When all the data entered into the form is valid, the actions in the else part of the
validateForm() function—including this section of script—are executed.
The first four lines of the script place the data in the various TextInput instances
into the registrationData object. The last line sends this data to a server-side script.
NOTE
For the last line of script, you should insert the URL to a script on your server for
processing the data. Or, if you simply want to do a final test of your code, use this
URL: />. The ColdFusion
page at this URL will send you email containing the validated data.
The else part of this script already had an action that would send the application to
the Confirm label automatically when all the data entered was valid. Because the
application is now set up to send data to a server, let's change this functionality a
bit so that the application only moves to that frame label after a response has been
received from the server, indicating that the submitted data has been received and
processed.
4. Remove the line of script in the else leg of the validateForm() function that reads
gotoAndStop("Confirm") and insert the following script just above the
sendAndLoad() method call:
5.
6. registrationData.onLoad = function(){
7.
8. gotoAndStop("Confirm");
9.
10. }
11.



This script will move the application to the Confirm label when a server response
has been sent back to the registrationData object. Let's do one final test.
NOTE
Before testing, make sure that the URL specified in the sendAndLoad() method
discussed in Step 3 contains a server-side script for handling the incoming data.
5. Choose Control > Test Movie.
If you enter valid data into the form fields and click the Submit button, the
application should send the data to the specified server-side script for processing,
and eventually move the application's timeline to the Confirm label after a
response has been received from the server.
6. Close the test movie to return to the authoring environment, and save this file as
validate7.fla.
This step completes the exercise and this lesson. The great thing about the way
we've set up this project's validation process is that it's dynamic. To analyze
additional rules or validation points for any of the text fields, all you have to do is
add more conditional statements to the appropriate function. The validation
process can grow as your needs grow.

< Day Day Up >

×