admin管理员组文章数量:1344238
I Have a DTO
, which I am using in order to map through one of its keys
THE DTO and the SecurityMode enum:
enum SecurityMode {
mode1 = 'mode1’,
mode2 = 'mode2’,
mode3 = 'mode3’
}
export default SecurityMode;
import SecurityMode from 'shared/mon/enums/SecurityMode';
export default interface IAuthUser {
security: Record<SecurityMode, boolean>;
}
THE ERROR:
Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Record<SecurityMode, boolean>'.
No index signature with a parameter of type 'string' was found on type 'Record<SecurityMode, boolean>'.ts(7053)
Here is the part of the Code, the error is presenting:
{user && user.security && user.security[securityKey] && ( // The error is on user.security[securityKey]
<Fragment>
<span">{securityKey}</span>
</Fragment>
)}
So, how do I remove this error? What is his problem?
I tried changing the security to:
security: Record<{[key: string]: SecurityMode, boolean}>
but the Record Generic only takes 2 arguments, and when I am putting them into a var, I get that I am using them as values. PLEASE HELP..
I Have a DTO
, which I am using in order to map through one of its keys
THE DTO and the SecurityMode enum:
enum SecurityMode {
mode1 = 'mode1’,
mode2 = 'mode2’,
mode3 = 'mode3’
}
export default SecurityMode;
import SecurityMode from 'shared/mon/enums/SecurityMode';
export default interface IAuthUser {
security: Record<SecurityMode, boolean>;
}
THE ERROR:
Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'Record<SecurityMode, boolean>'.
No index signature with a parameter of type 'string' was found on type 'Record<SecurityMode, boolean>'.ts(7053)
Here is the part of the Code, the error is presenting:
{user && user.security && user.security[securityKey] && ( // The error is on user.security[securityKey]
<Fragment>
<span">{securityKey}</span>
</Fragment>
)}
So, how do I remove this error? What is his problem?
I tried changing the security to:
security: Record<{[key: string]: SecurityMode, boolean}>
but the Record Generic only takes 2 arguments, and when I am putting them into a var, I get that I am using them as values. PLEASE HELP..
Share Improve this question edited Aug 26, 2020 at 15:40 JBaczuk 14.7k10 gold badges65 silver badges91 bronze badges asked Jul 15, 2019 at 9:48 user10104341user101043411 Answer
Reset to default 10 user.security[securityKey as SecurityMode]
The problem is not the type of user.security
but the type of securityKey
as that can be any string, also one that isn't part of user.security
. As undefined
/ false
have the same meaning here (I assume), it is safe to cast the string to the string literal union type, then the error should disappear.
本文标签:
版权声明:本文标题:javascript - TS | Element implicitly has an 'any' type because expression of type 'string' can&a 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702056a2524488.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论