如何以角度导出成员formModule

时间:2018-05-26 08:44:29

标签: javascript angular angular-forms

当我在cmd中编译我的代码时,我看到以下错误:

  

src / app / app.module.ts(3,10)中的错误:错误TS2305:模块   ' “C:/用户/ Amir_JKO /我的先应用程序/ node_modules / @角/形式/形式”'   没有导出的成员'formModule'。

我该如何解决这个问题?

2 个答案:

答案 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';