當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。