Динамический импорт машинописного текста в Angular Formly - PullRequest
0 голосов
/ 14 марта 2019

Я использую formly для генерации форм на основе схемы json. Мне нужно отправить запрос http для некоторых параметров поля.

JSON:

{
    "key": "ReportCode",
    "type": "select",
    "className": "form-group dropdown-children",
    "templateOptions": {
        "label": "Report Code",
        "options": [],
        "httpLookUp": "true",
        "controllerPath": "app/controllers/report-management/report-controller",
        "controller": "ReportController",
        "method": "getReportCodeList",
        "valueProp": "Key",
        "labelProp": "Key",
        "required": true
    }
}

И мне нужно сделать это:

import(field.templateOptions.controllerPath).then((data: any) => {...

Но это не работает.

Это работает:

import('app/controllers/report-management/report-controller').then((data: any) => {...

Есть идеи?

1 Ответ

0 голосов
/ 15 марта 2019

Вот решение:

import(`app/controllers/${field.templateOptions.controllerPath}`)
...