7

我正在学习 Angular Schematics 并且在数组类型输入方面遇到了一些问题。

当系统提示我输入一个值并按 Enter 时,该值会消失。输入数组值的正确方法是什么?

在此处输入图像描述

我的schema.json如下:

{
    "$schema": "http://json-schema.org/schema",
    "id": "HelloWorldSchematics",
    "title": "Hello World Options Schema",
    "type": "object",
    "properties": {
      "listName": {
        "type": "string",
        "description": "The name of the list.",
        "$default": {
          "$source": "argv",
          "index": 0
        },
        "x-prompt": "What's the name of list"
      },
      "colNames": {
        "type": "array",
        "items": {
            "type": "string"
        },
        "description": "The name of the columns.",
        "x-prompt": "What's the name of columns"
      }
    },
    "required": [
        "listName",
        "colNames"
    ]
}
4

1 回答 1

0

我只能使用 flag输入一个值。按照您的示例,您可以输入如下值:

schematics ./collection.json:HelloWorld --listName User --colNames={id,firstName}

请注意,数组的元素之间没有空格

以下将不起作用

schematics ./collection.json:HelloWorld --listName User --colNames={id, firstName}
于 2019-09-09T19:54:51.217 回答