作为CouchDB附件的PouchDB JS文件未正确加载

时间:2018-01-23 15:39:30

标签: javascript html couchdb pouchdb

我使用存储为CouchDB附件的PouchDB前端创建了一个应用程序。

我将此html页面存储在localhost:5984 / repository / b / index.html:

<!DOCTYPE html>
<html lang="en">
  <head>
      <meta charset="utf-8">
      <script src="/repository/b/pouchdb.min.js" type="text/javascript"></script>
    <title>practice</title>
    <div id="practice">
    </div>
  </head>
  <body>
      <div id="app"></div>

      <script src="/repository/b/build.js" type="text/javascript"></script>
      <script src="/repository/b/store.js" type="text/javascript"></script>
  </body>
</html>

Pouchdb.min.js成功存储在头部引用的src中。我尝试在store.js中引用它:

var db = new PouchDB('http://localhost:5984/repository');
var text;
var b = document.getElementById('practice');
db.info().then(function(info) {
    text=info;
}).then(function(){
    b.innerHTML=text;
});

我收到错误

ReferenceError: PouchDB is not defined

当我查看我的调试器时,在chrome的应用程序部分中,它显示已加载pouchdb文件内容。在网络部分,我的所有资源都显示304错误。

有人可以猜到这里会发生什么吗?

0 个答案:

没有答案