美文网首页
object access via string literal

object access via string literal

作者: 打哑谜 | 来源:发表于2019-10-17 17:19 被阅读0次

1、错误提示:

```

object access vis string literals is disallowed

```

// 问题代码

config.headers.common['Authorization'] = localStorage.getItem('TOKEN_KEY')

// 修改

let KEY = 'Authorization'

config.headers.common[KEY ] = localStorage.getItem('TOKEN_KEY') // 通过编译

相关文章

网友评论

      本文标题:object access via string literal

      本文链接:https://www.haomeiwen.com/subject/gfncpctx.html