Использовать разрешение с компонентом angularjs
Я пытаюсь решить список клиентов до отображения страницы.
Вот ссылка на провайдера состояния, где у меня есть методы разрешения.
angular.module('app')
.config(($stateProvider) => {
$stateProvider
.state('customers', {
url: '/customers',
template: '<customers></customers>',
resolve: {
test: function () {
return 'nihao';
},
},
});
});
Вслед за компонентом, который должен был вызвать #test от разрешения. Все, что нужно сделать, это вывести слово "nihao" на консоль.
(function myCustomersConfig() {
class MyCustomersComponent {
constructor(test) {
this.test = test;
console.log(this.test);
}
angular.module('app').component('myCustomers', {
templateUrl: 'app/customers/customers.html',
controller: MyCustomersComponent,
});
}());
Тем не менее, я продолжаю получать эту ошибку:
angular.js:13708 Error: [$injector:unpr] Unknown provider: testProvider <- test
http://errors.angularjs.org/1.5.7/$injector/unpr?p0=testProvider%20%3C-%20test
at angular.js:68
at angular.js:4502
at Object.getService [as get] (angular.js:4655)
at angular.js:4507
at getService (angular.js:4655)
at injectionArgs (angular.js:4679)
at Object.invoke (angular.js:4701)
at $controllerInit (angular.js:10234)
at nodeLinkFn (angular.js:9147)
at angular.js:9553
Я вижу, что он выполняет функции разрешения, так что это работает, но он не внедрит методы! Есть идеи?
2 ответа
Решение
В вашем коде отсутствует атрибут и привязка, чтобы разрешить работу.
angular.module('app')
...
template: '<customers test="$resolve.test"></customers>',
resolve: { test: function () { return {value: 'nihao'}; } },
...
});
(function myCustomersConfig() {
function MyCustomersComponent {
// You can use test right away, and also view as $ctrl.test
console.log(this.test);
}
angular.module('app')
.component('myCustomers', {
templateUrl: 'app/customers/customers.html',
controller: MyCustomersComponent,
bindings: {
test: "<",
}
});
}());
Добавьте привязки к вашему компоненту и удалите его из функции контроллера
angular.module('app').component('myCustomers', {
templateUrl: 'app/customers/customers.html',
controller: MyCustomersComponent,
bindings: {
'test': '<' // or @ for string
}
});
class MyCustomersComponent {
constructor() {
// this.test should already exist
console.log(this.test);
}
....