在Angular 2中的编辑配置文件页面上载配置文件后,更新标题部分中的标题配置文件图片

时间:2017-12-07 16:04:06

标签: angular angularjs-service

我在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组件中调用。

0 个答案:

没有答案