vie.js示例不起作用

时间:2013-05-17 12:03:01

标签: javascript frameworks rdfa

我试图使用vie.js(viejs.org)来使我的CMS的html输出更具机器可读/可操作性。

但是,vie-2.1.0.js总是会抛出错误:

  

未捕获TypeError:对象[object Object]没有方法'getByCid'

我还尝试过其他例子,比如这里的例子:

http://viejs.org/docs/2.1.0/index.html

并且最终也出现了同样的错误。

我已将我的代码粘贴在这个小提琴中:http://jsfiddle.net/2hwZS/

但我也会把它贴在这里:

<!DOCTYPE html>
<html>
<head>
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://underscorejs.org/underscore-min.js"></script>
    <script src="http://backbonejs.org/backbone-min.js"></script>
    <script src="http://neogermi.github.io/VIEwidgets/lib/jquery.rdfquery.js"></script>
    <script type="text/javascript" src="http://viejs.org/js/vie-2.1.0.debug.js"></script>
</head>
<body>
    <div id="index" typeof="http://rdfs.org/sioc/ns#Post" about="index">
        <h2 property="dcterms:title">Ich bin ein Blocktitel</h2>
        <p  property="sioc:content">Dieser Block hat nat&uuml;rlich auch einen Inhalt. Hier k&ouml;nnte jetzt alles stehen. Nachrichten, statischer Text, Termine oder einfach auch nichts. Wichtig ist nur, dass das Markup stimmt !</p>
        <p>Verfasst von <span>Jan Gregor Triebel</span> am <span>17.05.2013 / 10:47 Uhr</span></p>
    </div>
    <script>
        // Setting up VIE
        v = new VIE({classic: true});
        v.use(new v.RdfaService());
        var objects = v.RDFaEntities.getInstances();
        var post    = v.EntityManager.getBySubject('index');
        console.log(post);
    </script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

您应该直接在VIE跟踪器中提交票证:https://github.com/bergie/VIE/issues