我试图实施 vie.js (viejs . org) 以使我的 CMS 的 html 输出更具机器可读性/可操作性。
但是,vie-2.1.0.js 总是抛出错误:
未捕获的类型错误:对象 [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>