1

angular 2 と ng2-material を使用してラジオとチェックボックスのコンポーネントを表示しています。各コンポーネントで、すべての ng2-material コンテンツをインポートし、最終的に 1 つのコンポーネントのみを使用する必要があることがわかります

=>結果、アプリが充電され、遅くなります。

ng2-material のドキュメントではすべてのコンポーネントをインポートしているにもかかわらず、必要なコンポーネントのみをインポートできるかどうかを知りたいですか???

import {Component} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';

import {MATERIAL_DIRECTIVES, MATERIAL_PROVIDERS} from "ng2-material/all"; <<<<<

import {ROUTER_DIRECTIVES} from 'angular2/router';
import { CORE_DIRECTIVES, FORM_DIRECTIVES } from 'angular2/common';

@Component({
    selector: 'radiobox',
    templateUrl: '/radiobox.html',
    styleUrls: ['radiobox.css'],
    directives: [MATERIAL_DIRECTIVES] <<<<<<
4

2 に答える 2

1

ファイルによると、all.ts各コンポーネントを独自のモジュールでインポートできます。このファイルは、単純export * fromにいくつかの定数を実行して作成します。

このファイルの内容の一部を次に示します。

import {MdAnchor, MdButton} from "./components/button/button";
import {MdCheckbox} from "./components/checkbox/checkbox";
import {MdContent} from "./components/content/content";
import {MdDataTable, MdDataTableHeaderSelectableRow, MdDataTableSelectableRow} from './components/data_table/data_table';
import {MdDialog} from "./components/dialog/dialog";
import {MdDivider} from "./components/divider/divider";
import {MdIcon} from "./components/icon/icon";
import {MdInk} from "./components/ink/ink";
import {
  MdPatternValidator,
  MdMaxLengthValidator,
  MdMinValueValidator,
  MdMaxValueValidator,
  MdNumberRequiredValidator,
  INPUT_VALIDATORS
} from "./components/form/validators";
import {MdMessage, MdMessages} from "./components/form/messages";
import {MdInput, MdInputContainer} from "./components/input/input";
import {MdList, MdListItem} from "./components/list/list";
import {MdProgressLinear} from "./components/progress_linear/progress_linear";
import {MdProgressCircular} from "./components/progress_circular/progress_circular";
import {MdPeekaboo} from "./components/peekaboo/peekaboo";
import {MdRadioButton, MdRadioGroup} from "./components/radio/radio_button";
import {MdRadioDispatcher} from "./components/radio/radio_dispatcher";
import {MdSwitch} from "./components/switcher/switch";
import {MdSubheader} from "./components/subheader/subheader";
import {MdSidenav, MdSidenavContainer} from "./components/sidenav/sidenav";
import {SidenavService} from "./components/sidenav/sidenav_service";
import {MdToolbar} from "./components/toolbar/toolbar";
import {MdTabs, MdTab} from "./components/tabs/tabs";
import {Media} from "./core/util/media";
export * from './components/button/button';

たとえば、ラジオボタンのみを使用したい場合:

import {
  MdRadioButton, MdRadioGroup
} from "ng2-material/components/radio/radio_button";

定数については、同じファイルを参照してください: https://github.com/justindujardin/ng2-material/blob/master/ng2-material/all.ts#L85

于 2016-04-12T12:13:20.297 に答える
0

@firasKoubaa このような import {MdList, MdListItem, MdContent, MdButton} from 'ng2-material/all'; ものや このようなものを使用できると思いますimport {MdButton} from "/ng2-material/components/button/button";

于 2016-04-12T11:28:25.763 に答える