jQuery 是否仍包含在 CouchDB 中?
Is jQuery still included in CouchDB?
我正在浏览 this CouchDB 教程,其中引用了一些文件 - /_utils/script/jquery.js
和 /_utils/script/jquery.couch.js
- 应该包含在内。
<!DOCTYPE html>
<html>
<head><title>Tiny CouchApp</title></head>
<body>
<h1>Tiny CouchApp</h1>
<ul id="databases"></ul>
</body>
<script src="/_utils/script/jquery.js"></script>
<script src="/_utils/script/jquery.couch.js"></script>
<script>
$.couch.allDbs({
success : function(dbs) {
dbs.forEach(function(db) {
$("#databases").append('<li><a href="/_utils/database.html?'+db+'">'+db+'</a></li>');
});
}
});
</script>
</html>
当我 运行 通过 Fauxton 使用 Tiny CouchApp 时,我收到这些文件的 404 错误。我想知道自本教程编写以来(2012 年左右)它们是否已经移动,但我一直无法找到更多最新文档。
请查看他们的 official documentation 以获取更新的示例。
Fauxton 使用 React 编码,不随 jQuery 一起提供。 (但你真的不应该依赖你的数据库来为你提供一些 JS)
我正在浏览 this CouchDB 教程,其中引用了一些文件 - /_utils/script/jquery.js
和 /_utils/script/jquery.couch.js
- 应该包含在内。
<!DOCTYPE html>
<html>
<head><title>Tiny CouchApp</title></head>
<body>
<h1>Tiny CouchApp</h1>
<ul id="databases"></ul>
</body>
<script src="/_utils/script/jquery.js"></script>
<script src="/_utils/script/jquery.couch.js"></script>
<script>
$.couch.allDbs({
success : function(dbs) {
dbs.forEach(function(db) {
$("#databases").append('<li><a href="/_utils/database.html?'+db+'">'+db+'</a></li>');
});
}
});
</script>
</html>
当我 运行 通过 Fauxton 使用 Tiny CouchApp 时,我收到这些文件的 404 错误。我想知道自本教程编写以来(2012 年左右)它们是否已经移动,但我一直无法找到更多最新文档。
请查看他们的 official documentation 以获取更新的示例。
Fauxton 使用 React 编码,不随 jQuery 一起提供。 (但你真的不应该依赖你的数据库来为你提供一些 JS)