1
我已經添加.run
功能如下:
coursesApp.run(['$rootScope'], function ($rootScope) {
$rootScope.slugLinkCompany = function(item, link) {
if (item) {
var makeSlug = item.name.toLowerCase().replace(/[^\w ]+/g,'').replace(/ +/g,'-');
return item.name ? [link, makeSlug, item.id].join('/') : null;
}
};
$rootScope.slugLinkCourse = function(item, link) {
if (item) {
var makeSlug = item.title.toLowerCase().replace(/[^\w ]+/g,'').replace(/ +/g,'-');
return item.title ? [link, makeSlug, item.id].join('/') : null;
}
};
$rootScope.slugLinkCategory = function(item, link) {
if (item) {
var makeSlug = item.name.toLowerCase().replace(/[^\w ]+/g,'').replace(/ +/g,'-');
return item.name ? [link, makeSlug, item.id].join('/') : null;
}
};
});
不幸的是,當我醜化了,我遇到下面的錯誤。
Error: $injector:unpr
Unknown Provider
請讓我知道什麼,我已經錯過了。謝謝。