使用 Javascript 以编程方式创建 Azure 存储帐户的最佳选择是什么?
What are the best options for programatically creating an Azure Storage Account with Javascript?
使用 Javascript 以编程方式创建 Azure 存储帐户的最佳选择是什么?我发现 Javascript 允许您在创建存储帐户后管理 Blob 存储等的库,但是它们似乎无法自行创建存储帐户。
您无法使用 javascript 创建存储帐户。官方文档在Getting started中有说明。并且 @azure/storage-blob
用于使用 Microsoft Azure Storage Blob 服务。
Prerequisites: You must have an Azure subscription and a Storage
Account to use this package. If you are using this package in a
Node.js application, then Node.js version 8.0.0 or higher is required.
正如 r2018 在评论中所说,您可以使用 Portal、PowerShell 或 Azure CLI 创建它,请参阅 here。
使用 Javascript 以编程方式创建 Azure 存储帐户的最佳选择是什么?我发现 Javascript 允许您在创建存储帐户后管理 Blob 存储等的库,但是它们似乎无法自行创建存储帐户。
您无法使用 javascript 创建存储帐户。官方文档在Getting started中有说明。并且 @azure/storage-blob
用于使用 Microsoft Azure Storage Blob 服务。
Prerequisites: You must have an Azure subscription and a Storage Account to use this package. If you are using this package in a Node.js application, then Node.js version 8.0.0 or higher is required.
正如 r2018 在评论中所说,您可以使用 Portal、PowerShell 或 Azure CLI 创建它,请参阅 here。