web-dev-qa-db-ja.com

Angular2 SVG xlink:href

SVGアイコンをレンダリングするためのコンポーネントがあります:

import {Component, Directive} from 'angular2/core';
import {COMMON_DIRECTIVES} from 'angular2/common';

@Component({
  selector: '[icon]',
  directives: [COMMON_DIRECTIVES],
  template: `<svg role="img" class="o-icon o-icon--large">
                <use [xlink:href]="iconHref"></use>
              </svg>{{ innerText }}`
})
export class Icon {
  iconHref: string = 'icons/icons.svg#menu-dashboard';
  innerText: string = 'Dashboard';
}

これはエラーを引き起こします:

EXCEPTION: Template parse errors:
  Can't bind to 'xlink:href' since it isn't a known native property ("<svg role="img" class="o-icon o-icon--large">
<use [ERROR ->][xlink:href]=iconHref></use>
  </svg>{{ innerText }}"): SvgIcon@1:21

動的xlink:hrefを設定するにはどうすればよいですか?

37
tomaszbak

SVG要素にはプロパティがないため、ほとんどの場合、属性のバインドが必要です( HTMLのプロパティと属性 も参照)。

属性のバインドに必要なもの

<use [attr.xlink:href]="iconHref">

または

<use attr.xlink:href="{{iconHref}}">

更新

消毒は問題を引き起こす可能性があります。

こちらもご覧ください

UpdateDomSanitizationServiceはRC.6でDomSanitizerに名前が変更されます

Updateこれは修正する必要があります

しかし、名前空間属性についてこれをサポートする未解決の問題があります https://github.com/angular/angular/pull/6363/files

回避策として、追加の

xlink:href=""

Angularは属性を更新できますが、追加に問題があります。

xlink:hrefは実際にはプロパティであり、PRが追加された後も構文は機能するはずです。

66

Gunter で記述されたattr.xlink:hrefにまだ問題があったので、 SVG 4 Everybody に似ていますが、angular2に固有のディレクティブを作成しました。

使用法

<div [useLoader]="'icons/icons.svg#menu-dashboard'"></div>

説明

このディレクティブは

  1. Http経由でicons/icons.svgを読み込む
  2. 応答を解析し、#menu-dashboardのパス情報を抽出します
  3. 解析されたsvgアイコンをhtmlに追加します

コード

import { Directive, Input, ElementRef, OnChanges } from '@angular/core';
import { Http } from '@angular/http';

// Extract necessary symbol information
// Return text of specified svg
const extractSymbol = (svg, name) => {
    return svg.split('<symbol')
    .filter((def: string) => def.includes(name))
    .map((def) => def.split('</symbol>')[0])
    .map((def) => '<svg ' + def + '</svg>')
}

@Directive({
    selector: '[useLoader]'
})
export class UseLoaderDirective implements OnChanges {

    @Input() useLoader: string;

    constructor (
        private element: ElementRef,
        private http: Http
    ) {}

    ngOnChanges (values) {
        if (
            values.useLoader.currentValue &&
            values.useLoader.currentValue.includes('#')
        ) {
            // The resource url of the svg
            const src  = values.useLoader.currentValue.split('#')[0];
            // The id of the symbol definition
            const name = values.useLoader.currentValue.split('#')[1];

            // Load the src
            // Extract interested svg
            // Add svg to the element
            this.http.get(src)
            .map(res => res.text())
            .map(svg => extractSymbol(svg, name))
            .toPromise()
            .then(svg => this.element.nativeElement.innerHTML = svg)
            .catch(err => console.log(err))
        }
    }
}
3
Ryan Hansen