当我在cmd中编译我的代码时,我看到以下错误:
src / app / app.module.ts(3,10)中的错误:错误TS2305:模块 ' “C:/用户/ Amir_JKO /我的先应用程序/ node_modules / @角/形式/形式”' 没有导出的成员'formModule'。
我该如何解决这个问题?
答案 0 :(得分:1)
你输错了,试试:
Observable.fromIterable(itemList)
.subscribeOn(Schedulers.io())
.map(new Function<Item, Item>() {
@Override
public Item apply(Item item) throws Exception {
item.setItemId("Id: " + System.currentTimeMillis());
Log.i(TAG, "In Map Item: " + item.toString());
// do some long operation and return
return item;
}
})
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Consumer<Item>() {
@Override
public void accept(Item item) throws Exception {
Log.i(TAG, "Item: " + item.toString());
}
});
答案 1 :(得分:0)
在FormsModule
app.module.ts
import { FormsModule } from '@angular/forms';