�鸿蒙报错速查:arkts-no-as-const `as const` 禁用,用了就炸,根因 + 真解法
报错原文
ERROR: 10505001 ArkTS Compiler Error
Error Message: as const is not supported (arkts-no-as-const). At File: xxx.ets:N:N报错触发场景
你写鸿蒙 ArkTS 时,用 as const 断言就炸:
// ❌ 报错写法
const arr [a, b, c] as const
const…