标题: 字符串获取报错 Indexed access is not supported for fields [打印本页] 作者: catorange 时间: 2024-5-15 11:26 标题: 字符串获取报错 Indexed access is not supported for fields [md]使用了api11
```
function getRandomColor(): string {
const letters = '0123456789ABCDEF';
let color = '#';
for (let i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
// color += letters[0];
}
return color;
}
```
这里的letters[0]会提示Indexed access is not supported for fields (arkts-no-props-by-index),api10中正常