Is it possible to access the matrix parameters (name-value pair separated by semicolon) in ColdFusion?
问题 I'm new to matrix parameter and I know CF10 can access them through their new RESTful API support. However, is there a way to access these parameters without using RESTful API support? E.g. http://moremaps.com/map/color.cfm;lat=50;long=20;scale=32000 回答1: You can use: color.cfm;lat=50;long=20;scale=32000 Then get the param string with: ListRest(getPageContext().getRequest().getRequestUri(),';') This worked back in CFMX - it's not specific to CF10 or part of the RESTful API, and is available