我试图使用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ürlich auch einen Inhalt. Hier kö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>