2

我试图了解 KnockoutJS 是否适用于我的应用程序。我的数据模型(简化)如下:

function topic(data) {
    this.id = data.id;
    this.queries = ko.observableArray([]);
}

function query(data) {
    this.id = data.id;
    this.text = data.text;
    this.searcher = data.searcherId;
    this.postings = ko.observableArray([]);
}

function posting(data, query) {
    this.documentId = data.docid;
    this.rank = data.rank;
    this.snippet = data.snippet;
    this.score = data.score;
    this.query = query;
    this.document = null;
}

function document(data, topic) {
    this.id = data.id;
    this.url = data.url;
    this.topic = topic;
}

对于给定的topic,我有一个或多个query实例。每个查询都包含一个posting实例列表。每个都posting指一个文件。只要实例属于不同的实例,posting就可以引用多个给定的实例。documentpostingquery

如果 aposting指的是新文档(尚未被 any 检索到query),我想创建一个新实例;如果document已经存在(ID 是唯一的),我想重新使用它。

我可以看到一些可能的替代方案来构建服务器返回的 JSON 数据:

  1. 序列化过帐时,首先序列化所有文档的列表,并使用它们更新主文档列表。然后,发送包含对文档 ID 的引用的帖子。
  2. 将每个文档完全序列化为帖子的属性,然后确定该条目是否多余。将非冗余条目添加到主列表。

序列化数据的合理模式是什么?是否有一些映射插件的魔法可以简洁地表达这一点?我可以控制生成 JSON 的服务器,并且可以以任何有意义的方式构建它。

谢谢,

基因

4

2 回答 2

1

以下是我最终为实施选项 1 所做的工作:

function idField(data) {
    return ko.utils.unwrapObservable(data.id);
}

function createMapping(type, context) {
    return {
        key:    idField,
        create: constructor(type, context)
    }
}

function constructor(type, context) {
    return function(options) { 
        return new type(options.data, context); 
    }
}

function createReferenceMapping(collection) {
    return {
        key: idField,
        create: lookup(collection)
    }
}

function lookup(collectionOrClosure) {
    return function(options) {
        var collection = (typeof collectionOrClosure == 'function') ? collectionOrClosure() : collectionOrClosure;

        var object = collection.findById(options.data.idref);
        if (object == null)
            console.log("Error: Could not find object with id " + options.data.idref + " in ", collection);
        return object;
    }
}

我称这段代码如下:

    var mapping = {
        people: createMapping(Searcher),
        topics: createMapping(Topic, this),
        activeTopic: createReferenceMapping(function(){return self.topics();})
    };

    this.dataChannel.loadModel(function(data) {
        ko.mapping.fromJS(data, mapping, this);
    }

这需要注意创建新实例(通过constructor函数)和通过lookup.

于 2012-01-19T20:08:16.747 回答
0

Checkout entityspaces.js,有一个可以观看的视频,它支持完整的分层数据模型,甚至会生成你的 WCF JSON 服务,它也支持 REST API。

使用 Knockout 的 Javascript ORM(数据访问)框架

https://github.com/EntitySpaces/entityspaces.js#readme

于 2012-01-19T04:39:11.693 回答