为什么startWith和angular映射在部署后在本地工作会导致超时?

时间:2019-05-31 13:36:08

标签: angular rxjs serverless

我正在使用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秒后超时。但是,该代码在本地运行。有人遇到过吗?

0 个答案:

没有答案