2015-11-24 43 views
1

我試過這個教程https://github.com/maximepvrt/angular-google-gapi,我正在執行谷歌登錄這個插件,但是當我想修改標題。當活躍用戶的角度ng顯示

Welcome, {{gdata.getUser().name}}! <a ng-click="logout()" ng-show="{{gdata.getUser().name}}" class="uppercase margin-left-10px">logout</a>

如何更改註銷時,用戶不活動時要登錄?謝謝

+0

嘗試更改ng-show =「gdata.getUser()。name」 – xxlali

+0

@xxlali謝謝解決 – innonx

回答

0
<a ng-click="logout()" ng-show="gdata.getUser().name != null && gdata.getUser().name != ''" class="uppercase margin-left-10px"> 

ng-show是角度的指示。所以你不需要在這個指令中使用{{}}。