系统相关
首页 > 系统相关> > javascript – 我们可以直接将Windows Azure移动服务与BLOB存储连接吗?

javascript – 我们可以直接将Windows Azure移动服务与BLOB存储连接吗?

作者:互联网

我有一个关于如何使用Windows 8应用程序(Javascript)实现Windows Azure和Blob存储的问题.我们可以直接将Windows Azure移动服务与BLOB存储连接吗?

解决方法:

是的,您可以通过Windows Azure移动服务访问blob存储.基本上,您将通过服务器脚本使用blob存储.您将在Windows Azure SDK for Node.js中使用“azure”模块.

如果将以下内容复制到脚本中,则会获得对Windows Azure blob的引用,之后您可以对其进行查询或向其中插入数据.

var azure = require('azure');
var blobService = azure.createBlobService("<< account name >>",
                                            "<< access key >>");

你可以在这里查看Scott Guthrie的帖子:http://weblogs.asp.net/scottgu/archive/2012/10/16/windows-azure-mobile-services-new-support-for-ios-apps-facebook-twitter-google-identity-emails-sms-blobs-service-bus-and-more.aspx.

这篇文章详细介绍了如何使用Scheduler运行将数据备份到blob存储的计划脚本:http://www.thejoyofcode.com/Using_the_scheduler_to_backup_your_Mobile_Service_database.aspx

这篇文章介绍了如何从Mobile Services:http://www.nickharris.net/2012/11/how-to-upload-an-image-to-windows-azure-storage-using-mobile-services/将图像上传到blob存储

这里有关于使用blob的更多信息:http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/blob-storage/

希望有所帮助.

标签:javascript,azure,windows-8,azure-storage,azure-mobile-services
来源: https://codeday.me/bug/20190620/1245833.html