尝试实现星云项目会抛出错误:拼接运算符"@"不能用于引用表达式中的变量



我按照本页上的说明进行操作:https://qlik.dev/tutorials/build-a-chatbot-using-the-qlik-sense-natural-language-api

我实际上得到了一个错误,上面写着:

At line:1 char:5
npx @nebula.js/cli create mashup hello-saas
+     ~~~~~~~
The splatting operator '@' cannot be used to reference variables in an expression. '@nebula' can be used only as an argument to a command. To reference variables in an expression use '$nebula'.
+ CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : SplattingNotPermitted

这是因为您在PowerShell中运行命令。在那里你不能这么容易地使用@

两种选择:

  • cmd中运行命令
  • 或者,在PowerShell中,用引号将@命令括起来。像这样:npx "@nebula.js/cli" create mashup hello-saas

相关内容

  • 没有找到相关文章

最新更新