Tauri CLI命名参数
2024-01-26 09:59 更新
命名参数是一个(键、值)对,其中键标识值。使用以下配置:
{
"args": [
{
"name": "type",
"short": "t",
"takesValue": true,
"multiple": true,
"possibleValues": ["foo", "bar"]
}
]
}
用户可以以 或 的身份运行您的应用,并且 arg 匹配映射将定义为 。./app --type foo bar
./app -t foo -t bar
./app --type=foo,bar
type
["foo", "bar"]
以上内容是否对您有帮助:
更多建议: