如何在angular2处更改每个组件的favIcon

时间:2017-03-21 11:01:34

标签: angularjs angular typescript favicon

当我在项目的根文件夹上的主要图标处更改图标(编辑图像)时,我可以成功看到图标的更改,但我无法在每个组件上更改favIcon。我想在angularjs应用程序中为每个组件提供不同的favIcon。为了提供这一点,我提到了以下代码段,如下所示。但我无法在每个不同的组件上编辑favIcon?这是我提供的html的head属性来显示我的favIcon。如果不清楚,我可以发布更多的片段。

此致 Alper

#include<stdio.h>
#include<string.h>
int main()
{
  char line[1000];
  int i = 0, j, arr[100];

  fgets(line, 1000, stdin);
  char* p = line;
  while(i < 100 && sscanf(p, "%d", &arr[i]) == 1)
  {
    i++;

    // Remove leading spaces
    while(*p == ' ') ++p;

    // Advance to next space
    p = strchr(p, ' ');
    if (p == NULL)
    {
      // All input handled
      break;
    }
  }

  for(j = 0; j < i; j++)
  {
    printf("%d\n", arr[j]);
  }
  return 0;
}

0 个答案:

没有答案