admin管理员组文章数量:1342918
I want to define an object with mon properties:
var Config = {
a: 'fsdf',
b: 56,
c: 'fsfsdfsd',
set: function set(prop, val) {
this[prop] = val;
}
};
In another file, I want to extend it with custom properties:
var Config = Object.assign(Config, {
d: 34,
e: 'qqwqw'
});
And then, I want to read and modify the object in other files:
var x = Config.d + Config.b;
Config.set('a', 'asdf');
At the momment I was using browserify and require and modules.export syntax. But I want to use ES6 syntax.
How can I do it? Thank you.
I want to define an object with mon properties:
var Config = {
a: 'fsdf',
b: 56,
c: 'fsfsdfsd',
set: function set(prop, val) {
this[prop] = val;
}
};
In another file, I want to extend it with custom properties:
var Config = Object.assign(Config, {
d: 34,
e: 'qqwqw'
});
And then, I want to read and modify the object in other files:
var x = Config.d + Config.b;
Config.set('a', 'asdf');
At the momment I was using browserify and require and modules.export syntax. But I want to use ES6 syntax.
How can I do it? Thank you.
Share Improve this question asked Dec 21, 2015 at 13:45 dgnindgnin 1,6072 gold badges22 silver badges35 bronze badges 2-
2
It's unclear what you're asking. Are you asking how to export something using ES6 module syntax?
Object.assign
doesn't change. – T.J. Crowder Commented Dec 21, 2015 at 13:57 - The fragments I wrote are in three different files. How do you would define the export and import declarations to make this code work? – dgnin Commented Dec 21, 2015 at 15:57
2 Answers
Reset to default 10Exported variables are bound across modules, so you can modify imported value and it will be changed in other places
//config.js
const Config = {a: 'value1'};
export default Config;
//a.js
import Config from './config';
// you don't need to reassign return value, first argument will be mutated itself
Object.assign(Config, {a: 'value2'});
//b.js
import Config from './config';
import './a';
console.log(Config); // prints {a: 'value2'}
This article has more explanations about it.
Also, Rollup project homepage has a great playground to test how es6 modules works. See this example.
You can make a factory:
//config.js
export function createConfig(ext) {
return Object.assign(
{},
{
a: 'fsdf',
b: 56,
c: 'fsfsdfsd',
set (prop, val) {
this[prop] = val;
}
},
ext
);
};
//index.js
import { createConfig } from './config';
let config = createConfig({
d: 34,
e: 'qqwqw'
});
export config;
// x.js
import { config } from './index.js';
var x = config.d + config.b;
config.set('a', 'asdf');
本文标签: javascriptExport objectextend and reexport it in ES6Stack Overflow
版权声明:本文标题:javascript - Export object, extend and re-export it in ES6 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743628306a2512670.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论