i**p 发帖数: 902 | 1 The following is my code to get data from HTTP service. If I have ever got
data from one link, say "http://x.x.x.x/Flex/Access_title.aspx?Title=1", the next time when I need the same data, Flex will not set up HTTP connection to get the new data. Instead, it uses the saved old data. How can I make Flex to get new data every times? Thanks!
private var title: Array =
[ {label:"All", data1:"http://x.x.x.x/Flex/Access_all.aspx",
data2:"http://x.x.x.x/Flex/Access2_all.aspx"}, | j****y 发帖数: 178 | 2 if it happened just in IE, please see the link below:
http://kb.adobe.com/selfservice/viewContent.do?externalId=kb405620
【在 i**p 的大作中提到】 : The following is my code to get data from HTTP service. If I have ever got : data from one link, say "http://x.x.x.x/Flex/Access_title.aspx?Title=1", the next time when I need the same data, Flex will not set up HTTP connection to get the new data. Instead, it uses the saved old data. How can I make Flex to get new data every times? Thanks! : private var title: Array = : [ {label:"All", data1:"http://x.x.x.x/Flex/Access_all.aspx", : data2:"http://x.x.x.x/Flex/Access2_all.aspx"},
| b*******3 发帖数: 1461 | 3 cachebusting requesting url should do it |
|