当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript n3.Writer函数代码示例

本文整理汇总了TypeScript中n3.Writer函数的典型用法代码示例。如果您正苦于以下问题:TypeScript Writer函数的具体用法?TypeScript Writer怎么用?TypeScript Writer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了Writer函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: test_doc_from_triples_to_string

function test_doc_from_triples_to_string() {
    var writer = N3.Writer({ prefixes: { c: 'http://example.org/cartoons#' } });
    writer.addTriple('http://example.org/cartoons#Tom',
        'http://www.w3.org/1999/02/22-rdf-syntax-ns#type',
        'http://example.org/cartoons#Cat');
    writer.addTriple({
        subject: 'http://example.org/cartoons#Tom',
        predicate: 'http://example.org/cartoons#name',
        object: '"Tom"'
    });
    writer.end(function (error, result) { console.log(result); });

    var writer1 = N3.Writer({ format: 'N-Triples' });
    var writer2 = N3.Writer({ format: 'application/trig' });
}
开发者ID:Kroisse,项目名称:DefinitelyTyped,代码行数:15,代码来源:n3-tests.ts

示例2: test_doc_blank_nodes_and_lists

function test_doc_blank_nodes_and_lists() {
    var writer = N3.Writer({
        prefixes: {
            c: 'http://example.org/cartoons#',
            foaf: 'http://xmlns.com/foaf/0.1/'
        }
    });
    writer.addTriple(writer.blank('http://xmlns.com/foaf/0.1/givenName', '"Tom"@en'),
        'http://www.w3.org/1999/02/22-rdf-syntax-ns#type',
        'http://example.org/cartoons#Cat');
    writer.addTriple('http://example.org/cartoons#Jerry',
        'http://xmlns.com/foaf/0.1/knows',
        writer.blank([{
            predicate: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type',
            object: 'http://example.org/cartoons#Cat'
        }, {
            predicate: 'http://xmlns.com/foaf/0.1/givenName',
            object: '"Tom"@en',
        }]));
    writer.addTriple('http://example.org/cartoons#Mammy',
        'http://example.org/cartoons#hasPets',
        writer.list([
            'http://example.org/cartoons#Tom',
            'http://example.org/cartoons#Jerry'
        ]));
    writer.end(function (error, result) { console.log(result); });
}
开发者ID:Kroisse,项目名称:DefinitelyTyped,代码行数:27,代码来源:n3-tests.ts

示例3: test_doc_from_triples_to_string

function test_doc_from_triples_to_string() {
    const writer: N3.N3Writer = new N3.Writer({ prefixes: { c: 'http://example.org/cartoons#' } });
    writer.addQuad(N3.DataFactory.quad(
        N3.DataFactory.namedNode('http://example.org/cartoons#Tom'),
        N3.DataFactory.namedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
        N3.DataFactory.namedNode('http://example.org/cartoons#Cat')
    ));
    writer.addQuad(N3.DataFactory.quad(
      N3.DataFactory.namedNode('http://example.org/cartoons#Tom'),
      N3.DataFactory.namedNode('http://example.org/cartoons#name'),
      N3.DataFactory.literal('Tom'),
    ));
    writer.end((error, result: string) => { console.log(result); });

    const writer1: N3.N3Writer = N3.Writer({ format: 'N-Triples' });
    const writer2: N3.N3Writer = N3.Writer({ format: 'application/trig' });
}
开发者ID:pixelshaded,项目名称:DefinitelyTyped,代码行数:17,代码来源:n3-tests.ts

示例4: test_doc_from_triples_to_rdf_stream

function test_doc_from_triples_to_rdf_stream() {
    var writer = N3.Writer(process.stdout, { prefixes: { c: 'http://example.org/cartoons#' } });
    writer.addTriple('http://example.org/cartoons#Tom',
        'http://www.w3.org/1999/02/22-rdf-syntax-ns#type',
        'http://example.org/cartoons#Cat');
    writer.addTriple({
        subject: 'http://example.org/cartoons#Tom',
        predicate: 'http://example.org/cartoons#name',
        object: '"Tom"'
    });
    writer.end();
}
开发者ID:Kroisse,项目名称:DefinitelyTyped,代码行数:12,代码来源:n3-tests.ts

示例5: test_serialize

function test_serialize() {

    var writer: N3.N3Writer = N3.Writer(
        {
            format: "ttl",
            prefixes: {
                foaf: "http://xmlns.com/foaf/0.1",
                freebase: "http://rdf.freebase.com/ns/",
                g: "http://base.google.com/ns/1.0"
            }
        });
    writer.addTriple({
        subject: "subject-name",
        predicate: "predicate-name",
        object: N3.Util.createLiteral(12)
    });

    writer.end((error, result) => {
        console.log(`result ${result}`);
    });
}
开发者ID:Kroisse,项目名称:DefinitelyTyped,代码行数:21,代码来源:n3-tests.ts


注:本文中的n3.Writer函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。