gpt4 book ai didi

javascript - 获取图像 jasmine-angular 的警告 404

转载 作者:行者123 更新时间:2023-11-29 21:15:07 26 4
gpt4 key购买 nike

我的应用中的每张图片都会收到烦人的 404 警告。我尝试了 stackoverflow 上提供的不同解决方案,但仍然没有成功。我的单元测试通过了,但是有这个 404 警告。

karma 配置

var baseDir = 'client';

module.exports = {

//This is the list of file patterns to load into the browser during testing.
files: [
......
baseDir + '/src/app/app.js',
baseDir + '/test/unit/**/*.spec.js',
{
pattern: baseDir + '/assets/**/*.json',
watched: true,
served: true,
included: false
},
{
pattern: baseDir + '/assets/images/**/*.png',
watched: false,
included: false,
served: true
}
],

proxies : {
'/images/': '/base/images/'
},
};

警告

Screenshot of Warning

结构 Screenshot of the structure of the App

更新

我从 url 中删除了这个 __test 所以现在我得到:

WARN [web-server]: 404: /assets/images/map_WRO_lrg.png ..

我根据 karma 官方建议添加了这个代理http://karma-runner.github.io/0.13/config/files.html :

  proxies: {
"/img/": "/base/test/images/"
},

也试过这个:

proxies: {
"/img/": "http://localhost:9876/base/test/images/"
},

但同样的警告...

最佳答案

您应该尝试添加代理而不像这样:

代理:{
“/ Assets /”:“/ Assets /”
}

关于javascript - 获取图像 jasmine-angular 的警告 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39724904/

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