I'm using some loader that doesn't accept products.php?cat=10
as a target because it's too stupid to figure out what's the file name and what's the query string. Is there an AS3 function that will parse an URL and return a URLRequest based on variables in the query string?
相关问题
- how to split a list into a given number of sub-lis
- Generate string from integer with arbitrary base i
- garbage collection best practices
- Converting a string array to a byte array
- UrlEncodeUnicode and browser navigation errors
相关文章
- JSP String formatting Truncate
- Selecting only the first few characters in a strin
- Python: print in two columns
- extending c++ string member functions
- Google app engine datastore string encoding proble
- How to measure complexity of a string?
- What is the limit in size of a Php variable when s
- C# HttpClient.SendAsync always returns 404 but URL
There is possibility to create all you need:
There should be no problems with urls like
products.php?cat=1
. Maybe you just forgot to put crossdomain.xml on your server. I suppose, it's the most frequent error while usingURLRequest
You can use URLVariables.decode() to convert the query string into properties of the URLVariables object: