如何将 clasp 运行 与属性一起使用 - 有效的 JSON 格式

How to use clasp run with properties - the valid JSON format

为什么这个 clasp 命令对我不起作用?

clasp run setProperty -p ['domain' 'mydomain.com']

运行这个函数

function setProperty(key,value) {
    let scriptProperties = PropertiesService.getScriptProperties()
    scriptProperties.setProperty(key,value)
};
PC:AppsScript-CLASP user$ clasp run setProperty -p ['domain' 'mydomain.com']
Input params not Valid JSON string. Please fix and try again

这是我的系统或软件包的问题吗?

我正在使用

您忘记了逗号和单引号

根据 example in the documentation,您必须在数组外使用单引号,在使用字符串时必须使用双引号 clasp run 'setProperty' -p '["domain", "mydomain.com"]'

参考