actionscript 's http post with underscore problem

when you write flex with http post with key=value,when key contains underscore ,then flex Urlvariable will convert it into %5f,the solution is Just change Urlvariable to string

 for example:

 
to 

 

var url:String = "login_action.php";

var request:URLRequest = new URLRequest(url);

request.data = "user_name=bob";

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章