向 ActionScript 变量添加多个类别
我是一名设计师,试图为 Web 项目修改一些 ActionScript。在定义变量时,我希望其中一些变量具有多个参数/类别(我为我缺乏词汇而道歉)。
例如...
var Projects= [
{myName:"Example1",myType:"OldProject",myCopy:"Coming soon."}
// etc
];
如何包含多个参数,例如,myType
可以同时设置为 OldProject
和 2005Project
?
感谢您的帮助!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将
myType
参数设置为字符串数组,而不仅仅是一个。然后您可以循环访问它们以查找所有
types
值。像这样的东西:
You can set the
myType
parameter to be an array of strings instead of just one.then you can access them in a loop to find all of the
types
values.something like this:
一些选项包括:
还有一个关联数组、一个自定义类等...,但我会向您推荐选项 1,特别是如果您更多的是设计师而不是程序员。
如果您想要“堆栈属性”,您可以将 myType 设置为数组或另一个对象,例如:
或
Some of the options include:
There's also an associative array, a custom class, etc..., but I would recommend option 1 for you especially if you are more designer than programmer.
If you wanted to "Stack properties you can set myType to an array or another object, something like:
or