TypeError:require不是函数

时间:2016-12-17 15:00:12

标签: node.js angular electron

我在电子应用中使用Angular2。我想使用这里描述的远程电子模块。

https://github.com/electron/electron/blob/master/docs/api/remote.md#remote

当我在我的打字稿文件中写下以下行时,会抛出一个奇怪的错误

@Override
public void onResponse(JSONArray response) {
    if(response != null && response.length() > 0){
        for (int count = 0; count < response.length(); count++ ) {
            try {
                JSONObject jsonObject = response.getJSONObject(count);
                Contact contact = new Contact(jsonObject.getString("Name"), jsonObject.getString("Email"));
                arrayList.add(contact);
            } catch (JSONException e) {
                Toast.makeText(context,"Error",Toast.LENGTH_SHORT).show();
                e.printStackTrace();
            }
        }
        yourAdapter.notifyDataSetChanged();
    }
}

enter image description here

我知道如果我在Google中输入错误,会有很多参考,但没有任何帮助。我没有成功地尝试了所有。

更新:

我已修复此问题,只需将systemJS的版本更新为0.19.41即可。之前是0.19.25。如果任何人都可以解释为什么它不能使用旧版本,那就太好了。我会接受答案。

0 个答案:

没有答案