我在Actionscript中的XMLList中有值。需要將這些值發送到數據庫並進行更新。 我的ActionScript代碼如下:從ActionScript發送xml到PHP
public static function saveUserPermList():void {
var ht:HTTPService = new HTTPService();
ht.url = Config.getServerURL();
ht.method = URLRequestMethod.POST;
//ht.resultFormat = "e4x";
ht.contentType = "text/xml";
ht.request["action"] = "saveUserPermListXML";
ht.request["pdata"] = Application.application.userPermListModel.toString();
ht.addEventListener(ResultEvent.RESULT,AdminUserList.saveUserPermListResult);
ht.send();
}
public static function saveUserPermListResult(e:ResultEvent):void {
trace(e);
}
- 我怎樣才能XMLList中的數據發送到PHP?我應該向它添加一個toString()嗎?
- 還應該在Flex中的contentType。
我如何能趕上這裏面的PHP,PL讓我知道,試圖用,這樣一來,
如果($用戶 - > isAllowedAccess()){
header("Content-type:text/xml");
$postedData = $_POST["pdata"];
// $xmldoc = simplexml_load_string($POST['pdata']);
// echo($xmldoc);
}
沒有運氣。 Pl讓我知道。
託默勒格嗨,沒有得到你。發佈源代碼的屏幕截圖以顯示我正在嘗試的內容。如果有更好的方法,請讓我知道。 – 2010-05-25 11:18:38