尝试在TypeScript版本3.2.2的Angular 7.2.0上编译代码时遇到以下错误:
错误TS1005:“,”预期。**…
它链接到我尝试声明const
对象的行。
addAppareil(name: string status: string) {
const appareilObject = {
id: 0,
name: '',
status: ''
};
}
我不明白为什么它是不正确的,我尝试了很多方法来做到这一点,但是没有任何效果很好,并且网络上没有任何问题与我的问题相符。
答案 0 :(得分:2)
您忘记在参数中加上逗号:
// https://mvnrepository.com/artifact/org.springframework.retry/spring-retry
compile group: 'org.springframework.retry', name: 'spring-retry', version: '1.2.4.RELEASE'
// https://mvnrepository.com/artifact/org.springframework/spring-aspects
compile group: 'org.springframework', name: 'spring-aspects', version: '3.2.4.RELEASE'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop
compile group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '2.1.3.RELEASE'
// https://mvnrepository.com/artifact/org.springframework/spring-aop
compile group: 'org.springframework', name: 'spring-aop', version: '5.1.5.RELEASE'