Sails.js 不能 运行 脚本:风帆 运行 rebuild-cloud-sdk

Sails.js can't run script: sails run rebuild-cloud-sdk

我有一个问题运行:sails run rebuild-cloud-sdk

我收到以下错误:Could not regenerate the configuration for the "Cloud SDK" -- the JavaScript module used for AJAX and WebSockets. TypeError: Cannot read property 'write' of undefined

这是导致脚本文件中错误的行:

await sails.helpers.fs.write.with({

任何可能出错的想法都尝试 google 寻求解决方案,但找不到任何东西。我怀疑它可能与配置有关,因为我开始时使用的是一个空帆应用程序。

编辑:

正在从脚本文件中调用失败的函数,您可以在 Sails.js 种子应用程序(第 115 行)中找到该文件:https://github.com/balderdashy/seed/blob/master/scripts/rebuild-cloud-sdk.js

基本上,我认为我无法使用任何类型的助手,进一步谷歌搜索将我带到 https://github.com/sailshq/sails-hook-organics。结果我需要 运行 以下命令:

npm install sails-hook-organics --save

在构建我的应用程序时选择了一个空种子(由您配置),这就是导致我出现问题的原因。