我正在向“启动画面”屏幕添加背景图像,但未渲染图像。有时它加载有时没有加载。如果我在第二个屏幕中加载,它将正确加载。问题出在iOS中,而不是Android中。 这是示例代码:
filePath = 'http://localhost:3028/controller/addFile';
addFile(file) : void{
this.params = new HttpParams();
file = this.directory + '\\' + file;
this.params = this.params.append('file', file);
this.http.get(this.filePath, { params: this.params }).subscribe((data: any) => {
});
}
答案 0 :(得分:0)
您是否已将图像路径包括在pubspec.yaml
中?
assets:
- images/image_name.png