<h1>
尝试使用 URL 字符串设置基于函数时,我的函数身份不明。到目前为止,这是我的代码,我会在 Plunker 中设置它,但有点尴尬,因为我无法复制 URL 更改:
angular.module('app').controller('NavCtrl', function($scope, $location) {
// Create <h1> based on url string
var pageUrl = $location.url().substring(1);
$scope.pageTitleItems = {
feedback: "Feedback",
settings: "Settings",
editprofile: "Edit Profile"
};
$scope.$watch('$scope.location.url()', function(newValue, oldValue, $location) {
$scope.pageTitle = $scope.pageTitleItems.pageUrl;
console.log($scope.pagetitle);
});
});
有谁知道我在这里做错了什么?!