我正在使用mongo创建节点应用程序,.I有单独的模型文件,所有数据模块都是在其中创建的,我希望将所有数据模型配置为一个js文件,我们必须将其包含在node.js文件(server.js)中,这里有user.js。
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
module.exports = function() {
var users = new Schema({
name : String
, body : String
我有两个文件a.js和b.js。第一个函数运行一个异步函数,该函数包含一个变量,该变量在每次修改时都会发生变化。我想在另一个.js文件上访问相同的变量,其中包含修改后的数据
// a.js
var nodes; // I have defined a global variable
async function createEditor(container) {
...
async function compile() {
await engine.abort();
await engine.process(editor.toJSON());