2016-03-08 71 views

回答

0

你是如何試圖打開的網站?

也許你缺少InAppBrowser,安裝它,然後在文檔中打開你的網站,因爲它規定:

var ref = cordova.InAppBrowser.open('https://google.com', '_blank', 'location=yes'); 

您可以使用ref聽某些事件或以編程方式關閉該窗口。

+0

所以需要我改變window.open和足夠inAppBrowser? – Sobucki

+0

是的,這並不難,只需安裝'cordova plugin',然後使用該代碼,當然用您的URL替換'https:// google.com'。如果你檢查github頁面,你有更多的例子,以防萬一你需要更多的功能:) – Ariel

+0

它適用於我,我還有一個疑問,是關於json – Sobucki

0

$scope.go = function() { 
 
    window.open('http://www.guiafloripa.com.br/turismo/praias/praia-do-santinho/pontos-turisticos/museu-arqueologico-ao-ar-livre'); 
 
};
<ion-content> 
 

 
    
 
    <div class="list card"> 
 

 
    <div class="item item-avatar"> 
 
    <img src="resort.jpg" > 
 
    <h2>Costão do Santinho Resort</h2> 
 
    
 
    </div> 
 

 
    <div class="item item-body"> 
 
    <img class="full-image" ng-click="go()" src="resort.jpg" > 
 
    </img> 
 
    
 
    </div> 
 

 
</div> 
 
    
 

 

 

 
    </ion-content>

0

<ion-list > \t 
 
      <ion-item class="list" > 
 
\t \t \t \t <a class="item item-thumbnail-left" ng-href="{{x.Adress}}" ng-repeat="x in names|orderBy:'Name'" > 
 
\t \t \t \t <img ng-src="{{x.Image}}"> 
 
\t \t \t \t <h2>{{x.Name}}</h2> 
 
\t \t \t \t <p>{{x.Local}}</p> 
 
\t \t \t \t <p>{{x.Descri}}</p> 
 
\t \t \t \t </a> 
 
\t \t \t \t 
 
      </ion-item> 
 
</ion-list> 
 

+0

是同樣的問題,在瀏覽器上工作,但不是在智能手機上 – Sobucki

相關問題