我在edit-profile-component.ts文件中设置了配置文件pic路径。
现在我想在标题部分反映相同的个人资料路径,用户可以看到最新上传的图片。
public userProfilePicUploadOption: any = { url: this.httpClientHelper.serverUrl + '/api/v1/uploadProfilePic', fieldName: 'files', customHeaders: {'auth-token' : this.authentication.getToken(), 'api-key' : this.httpClientHelper.apiKey}, filterExtensions: true, allowedExtensions: ['jpg', 'png', 'jpeg'] };
我已经为setter和getter函数创建了commonService,这个服务将在header和edit-profile组件中调用。