gpt4 book ai didi

javascript - AngularJS ES6 语法中过滤器的未知提供程序错误

转载 作者:行者123 更新时间:2023-11-30 20:39:37 25 4
gpt4 key购买 nike

在捆绑并部署到远程服务器后,我无法在我的应用程序中使用过滤器。它在本地运行良好,但如果我远程运行我的应用程序,我会收到错误消息:

"Error: [$injector:unpr] Unknown provider: eProvider <- e <- filterByQueryFilter"

这是我的代码:

应用程序.js:

import myFilters from "./shared/filters";
import myModule from "./myModule";

export default angular.module('app', [
lots-of-modules...,
myFilters,])
.config(defaultRouting)
.run(["$http", "$rootScope", "$state", function($http, $rootScope, $state){ //code.. }]);

index.js(在 shared/filters 文件夹中):

import filterByQuery from "./filterbyquery.filter.js";
import highlightQuery from "./highlightquery.js";
import dateFormatter from "../formatter/dateFormatter";

export default angular.module("my.filters", [])
.filter("filterByQuery", filterByQuery)
.filter("highlightQuery", highlightQuery)
.filter("dateFormatter", dateFormatter)
.name;

another-module.js(我尝试使用过滤器的地方):

export default class anotherModule{

constructor() {
this.restrict = 'E';
this.replace = false;
this.template = require('./template.html');

this.scope = {};

this.controller = AnotherModule;
this.controllerAs = 'ctrl';
}
}

class AnotherModule{
constructor($scope, $filter) {
this.$filter = $filter;
}
}

AnotherModule.$inject = [..., "$filter"];

在 Controller 中使用过滤器:

res = this.$filter("filterByQuery")(res, this.filterString);

考虑到它在本地运行良好,我不太确定我在这里做错了什么。此外,highlightQuery过滤器通过使用 template.html 中的管道语法来工作

有人知道这里发生了什么吗?

最佳答案

缩小的 AngularJS 应用程序应该是 properly annotated为了执行依赖注入(inject)。

filterByQuery 过滤器工厂函数未注释。由于它包含在单独的文件中,因此使用 $inject 注释以便将其与函数本身保持在同一模块中是有意义的。这是带有 ES 模块的 ES6 注释的首选方式,由 John Papa style guide 提出。

关于javascript - AngularJS ES6 语法中过滤器的未知提供程序错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49425368/

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