eslint error Unsafe member access [#39;content-type#39;] on an any value(对任意值的eslint错误不安全成员访问[#39;content-type#39;])
问题描述
以下代码生成以下eslint错误:
对Any值的@typescript-eslint/no-unsafe-member-access:不安全成员访问[‘Content-Type’]。
export const getGraphPhoto = async () => {
try {
const response = await getGraphDetails(
config.resources.msGraphPhoto.uri,
config.resources.msGraphPhoto.scopes,
{ responseType: 'arraybuffer' }
)
if (!(response && response.data)) {
return ''
}
const imageBase64 = new Buffer(response.data, 'binary').toString('base64')
return `data:${response.headers['content-type']};base64, ${imageBase64}`
} catch (error) {
throw new Error(`Failed retrieving the graph photo: ${error as string}`)
}
}
承诺getGraphDetails
返回Promise<AxiosResponse<any>>
response.headers['content-type']
对象上可能不存在属性response.headers['content-type']
。要解决此问题,我首先尝试检查它,但这并不能消除警告:
if (
!(response && response.data && response.headers && response.headers['content-type'])
) { return '' }
感谢您为我更好地了解和解决此问题提供的任何指导。
推荐答案
我已经有一段时间没有使用打字稿了,所以我希望我没有犯任何错误...我认为该规则的目的不是为了阻止对不存在的属性的访问,而是警告任何对象(显式或隐式)对any
的属性的访问。如果有代码检查此属性是否存在,则规则不会考虑,而只是考虑对象的类型。如果没有警告访问response.data
或response.headers
,而只是访问response. headers['content-type']
,我猜getGraphDetails
响应被类型化,但headers
属性被类型化为any
。我认为您有三个选择:
- 将类型设置为响应头部。我不确定您是否可以在现有项目中找到一个接口,但如果不能,您可以根据需要声明一个显式接口,并按如下方式使用它:
interface ResponseHeaders {
'content-type': string,
[key: string]: string, // you could set more explicit headers names or even remove the above and set just this line
}
const headers : ResponseHeaders = response.headers;
禁用此行或整个文件的规则。
忽略该警告。
这篇关于对任意值的eslint错误不安全成员访问[';content-type';]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:对任意值的eslint错误不安全成员访问[';content-type';]
基础教程推荐
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 动态更新多个选择框 2022-01-01