2016-10-25 83 views

回答

1

你也可以用角來爲你做這個:

<button ng-click="doSomething(withSomebody)"> Submit 
</button> 

你就需要有一個控制器和定義DoSomething的( )

$scope.doSomething=function(somebody){ 
    ...insert code here 
} 

如果您需要改變你的狀態時,注入$狀態到您的控制器,並使用$ state.go(Statename的)

裁判:https://github.com/angular-ui/ui-router/wiki

-1

這是我在TS文件中使用

<ion-nav-buttons side="right" > 
     <a href="templates/yourpage.html"> 
     <button class="button"> 
      Show your page 
     </button> 
     </a> 
    </ion-nav-buttons> 
3

anotherPage: AnotherPage;

HTML:<ion-label [navPush]="anotherPage">Button</ion-label>

相關問題