0

vue创建项目:</p>

vue init webpack-simple nedbtest

安装 Nedb 数据库:</p>

npm i nedb -S

更改App.vue:</p>

<template>
<div>
  <button @click="insert">insertData</button>
  <button @click="find">FindData</button>
</div>
</template>

<script>
  var Datastore = require('nedb')
  var db = new Datastore({filename:'./test.db', autoload:true})
  export default {
    name: 'app',
    methods:{
      insert () {
        db.insert({name:"admin", password:"123"}, function(err, res) {
          console.log(res)
        })
      },
      find () {
        db.find({}, function(err, res) {
          console.log(res)
        })
      },
    }
  }
</script>

test.db 文件在哪里?我找不到这个文件!我在使用 Nodejs 时可以找到这个文件。

4

2 回答 2

1

文档中所述:

在浏览器版本中,如果指定文件名,数据库将是持久化的,并根据浏览器自动选择可用的最佳存储方法(IndexedDB、WebSQL 或 localStorage)。

这意味着“文件名”必须存储在这两种方法中的某处,具体取决于浏览器。

我从未使用过这个项目,但我想它必须将文件名提供给 indexDB 中的数据库,或者提供给 localStorage 值等的键......

于 2017-01-01T10:26:37.747 回答
1

自述文件中解释说,在浏览器版本中,数据库被持久化到浏览器中的最佳可用存储选项,包括 indexedDB、localstorage 等。

你在硬盘上找不到这个文件,因为浏览时代不允许脚本创建文件。

于 2017-01-01T10:28:30.377 回答