AngularJS ng-click to go to another page (with Ionic framework)

后端 未结 5 1543
暗喜
暗喜 2020-12-13 04:03

Ideally, when I click on the button (which is in the Ionic navbar at the top), it should bring me to another page. However its not working. Upon click, the nav bar buttons a

5条回答
  •  猫巷女王i
    2020-12-13 05:07

    app.controller('NavCtrl', function ($scope, $location, $state, $window, Post, Auth) {
        $scope.post = {url: 'http://', title: ''};
    
        $scope.createVariable = function(url) {
          $window.location.href = url;
        };
        $scope.createFixed = function() {
          $window.location.href = '/tab/newpost';
        };
    });
    

    HTML

    
    
    

提交回复
热议问题