如何获得系统属性__CreatedAt,__Version在javascript中的Azure中移动服务后端? [英] How to get system properties __CreatedAt, __Version in javascript backend of Azure Mobile services?

查看:223
本文介绍了如何获得系统属性__CreatedAt,__Version在javascript中的Azure中移动服务后端?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想明确地从我的表中的系统属性,但它不工作。我可以看到网址传回的所有数据,包括这些领域,如果我使用的https:/ /myservice.azure-mobile.net/tables/todoitem?__systemProperties= *但是,从code,我不能把它作为项目.__版本或item.version。我曾尝试加入todoitemtable = WindowsAzure.MobileServiceTable.SystemProperties.All;但没有成功!我也看了<一个href=\"http://azure.microsoft.com/en-us/documentation/articles/mobile-services-html-validate-modify-data-server-scripts/\" rel=\"nofollow\">http://azure.microsoft.com/en-us/documentation/articles/mobile-services-html-validate-modify-data-server-scripts/但是这将使用现有的系统的列的一个新的列来代替。

I am trying to explicitly get the system properties from my table but it is not working. I can see that the URL is returning all the data including these fields if I use https://myservice.azure-mobile.net/tables/todoitem?__systemProperties=* but on the code I cannot get it as item.__version or item.version. I have tried adding todoitemtable = WindowsAzure.MobileServiceTable.SystemProperties.All; but no success! I have also looked at http://azure.microsoft.com/en-us/documentation/articles/mobile-services-html-validate-modify-data-server-scripts/ but this is adding a new column instead of using the existing system columns.

$(函数(){
    VAR的客户=新WindowsAzure.MobileServiceClient('的https://ib-svc-01.azure-mobile .NET / ','键');
    变种todoItemTable = client.getTable('内的TodoItem');
// = WindowsAzure.MobileServiceTable.SystemProperties.All;

$(function() { var client = new WindowsAzure.MobileServiceClient('https://ib-svc-01.azure-mobile.net/', 'key'); var todoItemTable = client.getTable('todoitem'); // = WindowsAzure.MobileServiceTable.SystemProperties.All;

// Read current data and rebuild UI.
// If you plan to generate complex UIs like this, consider using a JavaScript templating library.
function refreshTodoItems() {
    var query = todoItemTable.where({ complete: false });

    query.read().then(function(todoItems) {
        var listItems = $.map(todoItems, function(item) {
            return $('<li>')
                .attr('data-todoitem-id', item.id)
                .append($('<button class="item-delete">Delete</button>'))
                .append($('<input type="checkbox" class="item-complete">').prop('checked', item.complete))
                .append($('<div>').append($('<input class="item-text">').val(item.id))
        .append($('<span class="timestamp">' 
                + (item.createdAt && item.createdAt.toDateString() + ' '
                + item.createdAt.toLocaleTimeString() || '') 
                + '</span>')));
        });

        $('#todo-items').empty().append(listItems).toggle(listItems.length > 0);
        $('#summary').html('<strong>' + todoItems.length + '</strong> item(s)');
    }, handleError);
}

function handleError(error) {
    var text = error + (error.request ? ' - ' + error.request.status : '');
    $('#errorlog').append($('<li>').text(text));
}

function getTodoItemId(formElement) {
    return $(formElement).closest('li').attr('data-todoitem-id');
}

// Handle insert
$('#add-item').submit(function(evt) {
    var textbox = $('#new-item-text'),
        itemText = textbox.val();
    if (itemText !== '') {
        todoItemTable.insert({ text: itemText, complete: false }).then(refreshTodoItems, handleError);
    }
    textbox.val('').focus();
    evt.preventDefault();
});

// Handle update
$(document.body).on('change', '.item-text', function() {
    var newText = $(this).val();
    todoItemTable.update({ id: getTodoItemId(this), text: newText }).then(null, handleError);
});

$(document.body).on('change', '.item-complete', function() {
    var isComplete = $(this).prop('checked');
    todoItemTable.update({ id: getTodoItemId(this), complete: isComplete }).then(refreshTodoItems, handleError);
});

// Handle delete
$(document.body).on('click', '.item-delete', function () {
    todoItemTable.del({ id: getTodoItemId(this) }).then(refreshTodoItems, handleError);
});

// On initial load, start by fetching the current data
refreshTodoItems();

});

推荐答案

我试图从API脚本中访问系统属性,发现这一点,并认为它是有用的,相关的:<一href=\"http://www.brandonmartinez.com/2014/10/22/retrieve-system-properties-in-azure-mobile-services-javascript-backend/\" rel=\"nofollow\">http://www.brandonmartinez.com/2014/10/22/retrieve-system-properties-in-azure-mobile-services-javascript-backend/

I was trying to access the system properties from within the API scripts and found this and thought it was useful and relevant: http://www.brandonmartinez.com/2014/10/22/retrieve-system-properties-in-azure-mobile-services-javascript-backend/

基本上,你可以做到这一点(从岗位为例):

Basically you can do this (example from the post):

myTable.read({
        systemProperties: ['__createdAt', '__updatedAt'],
        success: function(tableEntries) {
        // So on and so forth
    }
}

这篇关于如何获得系统属性__CreatedAt,__Version在javascript中的Azure中移动服务后端?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆