gpt4 book ai didi

angular - 找不到模块 'application-settings'

转载 作者:行者123 更新时间:2023-12-04 00:36:28 30 4
gpt4 key购买 nike

尝试包含“应用程序设置模块”时出现错误。

*找不到模块“应用程序设置”<-----错误

错误出现在我的 storage.driver.ts 中,它位于使用 loopback sdk builder 构建的 nativescript sdk 中

存储驱动程序.ts

import * as AppSettings from 'application-settings'; <---- Error here
export class StorageDriver {
static set(key: string, value: any) {
AppSettings.setString(key, String(value));
}
static get(key: string): any {
return AppSettings.getString(key);
}
static remove(key: string): any {
if (AppSettings.hasKey(key)) {
AppSettings.remove(key);
} else {
console.log('Trying to remove unexisting key: ', key);
}
}
}
  • https://github.com/m-expert-official/loopback-sdk-builder/wikiean

  • 我应该怎么做才能解决这个问题?我是 nativescript 的新手。

    最佳答案

    'application-settings' 已移至 'tns-core-modules',现在已弃用为 'application-settings',其他核心 nativescript 模块现在是 '@nativescript/core' 的一部分。
    现在我们使用“@nativescript/core”而不是“tns-core-modules”。

    @不推荐使用

    import * as AppSettings from 'tns-core-modules/application-settings';

    改用这个:
    import * as AppSettings from '@nativescript/core/application-settings';

    关于angular - 找不到模块 'application-settings',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41032988/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com