目前我有一个有效的应用程序(Groceries app):
this is how I use the (old) Http
module:
(虽然它正在运作) - Webstorm无法识别它(因为Http
已经老了):
所以我已将app.module.ts
更改为使用新HttpClient
:
通过:
import {HttpClient, HttpHeaders} from "@angular/common/http";
然后我得到了这个例外:
System.err: Caused by: com.tns.NativeScriptException:
System.err: Calling js method onActivityResumed failed
System.err:
System.err: **Error: Trying to link invalid 'this' to a Java object**
System.err: File: "file:///data/data/org.nativescript.Groceries/files/app/tns_modules/tns-core-modules/ui/frame/fragment.transitions.js, line: 266, column: 35
System.err:
System.err: StackTrace:
完整错误(在控制台中)为here:
问题
如何修复我的代码不显示此错误?