ColdFusion:将数组转换为结构名称

发布于 2024-11-24 04:09:14 字数 340 浏览 2 评论 0 原文

表单输入名称:

user[subscriptions][1,28][_delete]

本质上变成这样的结构:

User

-Subscriptions

--1,28

---_delete

但是如何手动创建这样的结构呢?

你不能这样做:

<cfset user.subscriptions.1,28._delete = 1>

CF 不喜欢结构名称中的逗号。但我需要能够创建这样的结构。

有什么想法吗?

The form input name of:

user[subscriptions][1,28][_delete]

Essentially turns into a struct like this:

User

-Subscriptions

--1,28

---_delete

But how can you manually create a struct like this?

You can't do:

<cfset user.subscriptions.1,28._delete = 1>

CF doesn't like the comma in the struct name. But I need to be able to create the struct like this.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜未央樱花落 2024-12-01 04:09:58

数组表示法可以让您摆脱各种非法变量名称:)

<cfset user[ 'subscriptions' ][ '1,28' ][ '_delete' ] = 1 />

Array notation lets you get away with all kinds of illegal variable names :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文