Reputation: 42500
I defined a mobx map as below:
@observable editors = observable.map();
then I added object on the editors
as below:
editors.set(key, {
alias: 'alias-1',
message: 'hello',
})
when I get the object from editor
as below:
let myEditor = editors.get(key)
the returned object myEditor
has some builtin functions such as:
$mobx:ObservableObjectAdministration
get alias:function ()
set alias:function ()
get message:function ()
set message:function ()
I wander how I can get a plain javascript object from editor
?
Upvotes: 11
Views: 5944