我正在尝试使用NeDB数据库来持久化应用程序数据。我正在尝试使用以下方法连接到我的数据库,如下所示:
var Datastore = require('nedb')
, path = require('path')
, db = new Datastore({ filename: path.join(require('nw.gui').App.dataPath, 'something.db') }
但不幸的是,它失败了,因为这只适用<script></script>
于 html 文件中带有标签的客户端代码。我怎么能在服务器端做同样的事情?