EN
Bu içerik dilinizde bulunmamaktadır ancak İngilizce sürümüne buradan bakabilirsiniz.
Bu konu henüz değerlendirilmedi - Bu konuyu değerlendir

tables object (global)

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

The feature described in this topic is available only in preview. To use this feature and other new Windows Azure capabilities, sign up for the free preview.


Provides functionality for working with specific tables as a Table object instance.

This object contains the following members:

Methods

getTable

Syntax Returns Description

tables.getTable(tableName)

Table object

Returns the specified tableName as a Table object.

Call the getTable method on the global tables object to get a Table object that represents a specific tableName.

The following script calls the getTable method to get the permissions table against which to execute queries.

function insert(item, user, request) {
    var permissionsTable = tables.getTable('permissions');

    permissionsTable.where({
        userId: user.userId,
        permission: 'submit order'
    }).read({
        success: function(results) {
            if (results.length > 0) {
                // Permission record was found. Continue normal execution.
                request.execute();
            } else {
                console.log('User %s attempted to submit an order without permissions.', user.userId);
                request.respond(statusCodes.FORBIDDEN, 'You do not have permission to submit orders.');
            }
        }
    });
}

Bunu faydalı buldunuz mu?
(1500 karakter kaldı)
© 2013 Microsoft. Tüm hakları saklıdır.
facebook page visit twitter rss feed newsletter