我正在使用Serverless将我的角度应用程序部署到AWS。由于添加了此代码 过滤数组以自动填充
this.filteredOptions = this.spotSearch.valueChanges
.pipe(startWith(''), map(value => this.filter(value))
);
具有过滤器功能
private filter(value: string): string[] {
const filterValue = value.toLowerCase();
return this.spotNames.filter(option =>
option.toLowerCase().includes(filterValue));
}
和filteredOptions被
public filteredOptions: Observable<string[]>;
当我部署时,我收到一条消息,指出内部服务器错误,日志显示该任务在10秒后超时。但是,该代码在本地运行。有人遇到过吗?