gpt4 book ai didi

AngularJS 读取配置文件的更好方法?

转载 作者:行者123 更新时间:2023-12-02 03:27:28 25 4
gpt4 key购买 nike

我构建了一个需要动态配置的 angularJS 应用程序,因此我创建了一个包含所需配置的 config.json 文件,并决定在 app.config 中加载配置文件,如下所示:

angular.module("myapp",[]).config([ my injections] , function(my providers){
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else if (window.ActiveXObject) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.open("GET","config.json"); //my config file
xhr.send();
xhr.onreadystatechange=function()
{
if (xhr.readyState==4 && xhr.status==200)
{
//config file parsed, set up params
}
}
})

我这样做的原因是因为 $http 没有注入(inject)配置状态,我不想在 Controller 级别“配置”应用程序。

应用程序运行良好。它做了我想做的事,一切都很好......除了单元测试(使用 karma + Jasmine )。

即使在 karma.conf 中我有:

{pattern: 'config.json',served:true,watched:false,included:false}

已定义,当我启动 karma 时,我得到一个关于 config.json 404 的 cli [WARN]。我的单元测试以查看是否所有配置都失败了(即它没有读取 config.json)

有没有更好的方法来编写单元测试的配置文件?

最佳答案

在我们的应用程序中,我们有外部文件 config.js,它只包含提供配置常量的普通模块。

angular.module('myAppPrefixconfig')
.constant('PLAIN_CONSTANT', 'value'),
.constant('APP_CONFIG', {...});

在您的应用程序中,您依赖它,并且有普通的 http 请求 - 可以通过适当的配置由您的后端解决。

在 Karma 测试中,您可以直接在 karma.conf 中提供“测试配置”。

关于AngularJS 读取配置文件的更好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29676263/

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