如何从 URL 字符串中检索(准)数组?
我想实现一些我可以在.net 中轻松完成的事情。
我想要做的是传递多个同名的 URL 参数来构建这些值的数组。
换句话说,我想采用如下所示的 URL 字符串:
http://www.example.com/Test.cfc?method=myArrayTest&foo=1&foo=2&foo=3
并从 URL 参数“foo”构建一个数组。
在 .net / C# 中,我可以这样做:
[WebMethod]
myArrayTest(string[] foo)
这将从变量“foo”构建一个字符串数组。
到目前为止我所做的是这样的:
<cffunction name="myArrayTest" access="remote" returntype="string">
<cfargument name="foo" type="string" required="yes">
这将输出:
1,2,3
我对此并不兴奋,因为它只是一个逗号分隔的字符串,我担心 URL 中可能会传递逗号(当然是经过编码的),然后如果我尝试循环逗号,它可能会被误解为单独的参数。
所以,我对如何实现这一目标感到困惑。
有什么想法吗?
提前致谢!!
I would like to achieve something I can easily do in .net.
What I would like to do is pass multiple URL parameters of the same name to build an array of those values.
In other words, I would like to take a URL string like so:
http://www.example.com/Test.cfc?method=myArrayTest&foo=1&foo=2&foo=3
And build an array from the URL parameter "foo".
In .net / C# I can do something like this:
[WebMethod]
myArrayTest(string[] foo)
And that will build a string array from the variable "foo".
What I have done so far is something like this:
<cffunction name="myArrayTest" access="remote" returntype="string">
<cfargument name="foo" type="string" required="yes">
This would output:
1,2,3
I'm not thrilled with that because it's just a comma separated string and I'm afraid that there may be commas passed in the URL (encoded of course) and then if I try to loop over the commas it may be misinterpreted as a separate param.
So, I'm stumped on how to achieve this.
Any ideas??
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑: Sergii 的方法更加通用。但是,如果您正在解析当前网址,并且不需要修改结果数组,则另一个选择是使用 getPageContext() 从底层请求中提取参数。请注意下面提到的两个怪癖。
Edit: Sergii's method is more versatile. But if you are parsing the current url, and do not need to modify the resulting array, another option is using getPageContext() to extract the parameter from the underlying request. Just be aware of the two quirks noted below.
好吧,如果您可以解析 URL,那么以下“原始”方法可能适合您:
我已经使用以下查询对其进行了测试:
?method=myArrayTest&foo=1&foo=2&foo=3 ,3
,看起来按预期工作。奖金。 Railo 的重要提示:如果您按如下方式格式化查询,则该数组将在 URL 范围
?method=myArrayTest&foo[]=1&foo[]=2&foo[]=3,3.
Well, if you're OK with parsing the URL, following "raw" method may work for you:
I've tested it with this query:
?method=myArrayTest&foo=1&foo=2&foo=3,3
, looks to work as expected.Bonus. Railo's top tip: if you format the query as follows, this array will be created automatically in URL scope
?method=myArrayTest&foo[]=1&foo[]=2&foo[]=3,3
.listToArray(arguments.foo)
应该给你你想要的。listToArray( arguments.foo )
should give you what you want.