嗨,我正在尝试这个SQLite示例,https://github.com/TeamClouders/Ionic-2-sqlite-demo 收到这些错误,
Member 'db' implicitly has an 'any' type.
Member 'arr' implicitly has an 'any[]' type.
Parameter 'tx' implicitly has an 'any' type.
...
在 https://github.com/TeamClouders/Ionic-2-sqlite-demo/blob/master/src/providers/sqlite.ts
不确定问题是什么?
干杯
更新感谢@yugantar库马尔我似乎没有错误地设置了"成员"类型:
public text : string = "";
public db:any = null;
public arr : any = [];
但是我仍然在参数上收到错误 - 不确定如何设置参数的类型?例如
.transaction((tx) => {
tx.executeSql('CREATE TABLE IF NOT EXISTS Todo (id integer primary
key,todoItem text)');
@roshambo:您没有在代码中定义db, arr, tx
这些变量的类型。在代码中定义这些变量的类型