我想开始新的React项目。我决定使用Mobx。我发现样板似乎是完美的开始使用。我抓了https://github.com/mobxjs/mobx-react-boilerplate我遇到了一个问题。当我执行StringBuilder
时:
toLowerCase()
如何摆脱这个问题?我认为这个样板文件中的设置会让我使用objects[0] = other
。
更新
我重新安装了样板,现在我又遇到了另一个问题。
class Main {
static void foo(Object[] objects, Object other) {
objects[0] = other;
}
public static void main(String[] args) {
String[] strings = { "stringValue" };
foo(strings, new StringBuilder());
}
}
答案 0 :(得分:1)
首先在您的项目中安装它:
https://github.com/timarney/react-app-rewired/tree/master/packages/react-app-rewire-mobx
并更改您的package.json
"start": "react-app-rewired start",
"build": "react-app-rewired build"