我是 ES5 中 ES6 的新手,我能够设置任何需要(导入)包的属性,如下所示
var client = require('./client');
var conn = require('./conn/conn1.js');
client.conn = conn;
module.exports = client;
在client
包中,我们能够访问 client.conn。像这样
function client(opts){
// client.conn is accesable here
}
现在在 ES6 中我正在尝试这样做
import client from './client'
import conn from './conn/conn1.js'
client.conn = conn;
export {client as default}
但我无法访问conn
变量。我怎样才能以正确的方式做到这一点。