最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is it possible to use MobX without React? - Stack Overflow

programmeradmin0浏览0评论

I like MobX. I would like to use it in native JavaScript. I tried adding the CDN Then I tried writing a class with MobX Syntax:

class MyStore {
  @observable data = 'foo'
}
const myStore = new MyStore();

but I get errors:

SyntaxError: illegal character

for the @ and:

ReferenceError: exports is not defined

from inside mobx.js file.

So it does not seem to be possible without React and without Blunding/Transpiler, is it? If not are there alternatives?

Thank you!

I like MobX. I would like to use it in native JavaScript. I tried adding the CDN https://cdnjs./libraries/mobx Then I tried writing a class with MobX Syntax:

class MyStore {
  @observable data = 'foo'
}
const myStore = new MyStore();

but I get errors:

SyntaxError: illegal character

for the @ and:

ReferenceError: exports is not defined

from inside mobx.js file.

So it does not seem to be possible without React and without Blunding/Transpiler, is it? If not are there alternatives?

Thank you!

Share Improve this question asked Apr 26, 2018 at 14:38 chitzuichitzui 4,0984 gold badges32 silver badges42 bronze badges 1
  • 2 You don't need React but you do need Babel (babel-preset-mobx preset) if you want decorator syntax mobx.js/best/decorators.html – Matt Commented Apr 26, 2018 at 14:40
Add a ment  | 

3 Answers 3

Reset to default 4

Yes, you can use MobX without React, but in your example you used decorators syntax, which belong to ES.Next, and is not natively supported by the browser, and requires a transpiler (Babel, for example).

If you want to use MobX directly in your browser without decorators, these instructions can be useful for you: https://mobx.js/best/decorators.html

As @someone235 said, it is possible.

to show you, here is an example without any react in it: https://jsfiddle/Lrt9pky4/

This is the code, although i can't enable decorators in SO so the below example doesn't work. the link does work.

const {observable, puted, autorun} = mobx;
class MyStore {
  @observable data = 'foo'
}
const myStore = new MyStore();      
autorun(()=> {
console.log(myStore.data);
document.getElementById('log').innerHTML += myStore.data + "<br />"
})

myStore.data = 'bar'
<script src="https://unpkg./mobx@3/lib/mobx.umd.js"></script>
<body>
  Log
  <hr/>
  <div id="log">
  </div>
</body>

You can use autorun and observe/intercept methods to receive notifications from changes, but you'd have to write all the other code yourself. (to react on these changes properly, phun intended).

No need for decorators. You can try the Mobx 4 approach:

import { decorate, observable} from "mobx"
class MyStore {
  data = 'foo'
}
decorate(City, {
    data: observable,
})
const myStore = new MyStore();

more details here https://medium./@mweststrate/mobx-4-better-simpler-faster-smaller-c1fbc08008da

发布评论

评论列表(0)

  1. 暂无评论