以下是引用片段: //包含文件#include "NetDebug.as" 主要用于调试,并无其它意义,可选参数 //System.useCodePage=true;当服务器不支持utf-8时候加如下代码. #include "NetDebug.as" conn=new NetConnection(); //连接网关,在flashmx的窗口 service browser中可以找到. conn.connect("http://localhost:8500/flashservices/gateway"); //呼叫服务 //定义一个接收传回值的对象 var obj={}; //定义接收对象事件 onResult 当受到一个结果时候,此事件触发; obj.onResult=function (结果) { showbox.text = 结果; trace(结果); } obj.onStatus = function(info){ trace("一个错误发生" + info.code); } function function1() { //使用命名参数传递对象,在参数比较多的时候,特别方便,推荐使用. var obj2={}; obj2.sj=inputbox.text; conn.call("FLASHTEST.f2c",obj,obj2); } //定义按钮事件 button1.onPress = function() { function1(); } |
服务器代码编写:
新建站点:flashtest 新建文件f2c.cfm
代码如下 保存位置/flashtest/f2c.cfm
!--- 返回服务器的当前时间--->
cfset theTime = timeFormat(now(), "h:mm:ss tt") >
!--- 特定的变量名 Flash.result可以回调客户端的.onresult --->
!--- 设定result的数据内容,#Flash.sj# 取得flash传递过来的实名数据变量.否则使用flash.params[1]获得变量,cf中数组从一开始,第一个参数为params[1]
--->
cfset flash.result = "欢迎" #Flash.sj# "使用全球领先的cf服务器系统,现在CF的标准时间是" theTime>
执行的效果如下所示: