从JavaScript查询OCB(WireCloud)

时间:2015-02-04 18:58:18

标签: fiware-orion fiware fiware-wirecloud

我试图为我的实体的每个属性获取类型字段。 Quering Orion和获取实体不是问题(我是通过NGSI Source小部件完成的),而是获取这些参数的方式。

从NGSI Source(通常的Suscription到Orion实例):

 var doInitialSubscription = function doInitialSubscription() {

    this.subscriptionId = null;

    this.ngsi_server = MashupPlatform.prefs.get('ngsi_server');
    this.ngsi_proxy = MashupPlatform.prefs.get('ngsi_proxy');
    this.connection = new NGSI.Connection(this.ngsi_server, {
        ngsi_proxy_url: this.ngsi_proxy
    });

    var types = MashupPlatform.prefs.get('ngsi_entities').split(new RegExp(',\\s*'));
    var entityIdList = [];
    var entityId;
    for (var i = 0; i < types.length; i++) {
        entityId = {
            id: '.*',
            type: types[i],
            isPattern: true
        };
        entityIdList.push(entityId);
    }
    var attributeList = null;
    var duration = 'PT3H';
    var throttling = null;
    var notifyConditions = [{
        'type': 'ONCHANGE',
        'condValues': MashupPlatform.prefs.get('ngsi_update_attributes').split(new RegExp(',\\s*'))
    }];
    var options = {
        flat: true,
        onNotify: handlerReceiveEntity.bind(this),
        onSuccess: function (data) {
            this.subscriptionId = data.subscriptionId;
            this.refresh_interval = setInterval(refreshNGSISubscription.bind(this), 1000 * 60 * 60 * 2);  // each 2 hours
            window.addEventListener("beforeunload", function () {
                this.connection.cancelSubscription(this.subscriptionId);
            }.bind(this));
        }.bind(this)
    };
    this.connection.createSubscription(entityIdList, attributeList, duration, throttling, notifyConditions, options);
};
 var handlerReceiveEntity = function handlerReceiveEntity(data) {
    for (var entityId in data.elements) {
        MashupPlatform.wiring.pushEvent("entityOutput", JSON.stringify(data.elements[entityId]));
    }
};

到MyWidget:

MashupPlatform.wiring.registerCallback("entityInput", function (entityString) {
    var entity;
    entity = JSON.parse(entityString);
    id = entity.id;
    type = entity.type;
    for(var attr in entity){
        attribute = entity[attr];
    }

我尝试编写类似的代码以获取 type 字段的值。我怎样才能做到这一点? (我确定这很容易......)

1 个答案:

答案 0 :(得分:2)

如果要获取属性的类型元数据,NGI源使用flat选项(丢弃该信息),则无法使用当前的NGSI源运算符实现(至少v3.0.2)

我们正在研究更新此运算符以允许在不使用flat选项的情况下创建订阅。这里的主要问题是其他组件期望此运算符提供的数据以使用flat选项时返回的格式提供。在深入分析问题之后,我会更新这个答案。