0
問題があり、解決方法がわかりません。Ionic 1. HTTP要求を処理しません
私はIonicに$ http.get()を持っています。私が行うときはionic serveが完璧です。しかし、私がios/androidを実行したり、Ionic Viewで見ると何も起こりません。
マイサービス:
.service('myService', function($rootScope, $http, $q) {
this.all = function() {
var deferred = $q.defer();
$http.get('xxxxxxxxxxxxxxx')
.success(function(data) {
deferred.resolve(data);
})
.error(function(data) {
alert(data);
deferred.reject(data);
});
return deferred.promise;
};
});
そして、私のコントローラで:
myService.all().then(function(data) {
$scope.data = data;
});
私はそれが良い示しブラウザで開き、デバイスに、私は「ヌル」との警告を取得します。
Iの操作を行います。
イオン更新
コルドバ・プラグイン・ホワイトリストをインストール
イオンIOS /アンドロイドを造る - >イオンのアップロード/イオン
アドオンを実行します。
<access origin="*" subdomains="true"/>
<allow-navigation href="http://*/*"/>
を
(config.xml)
しかし、何も仕事...任意のアイデア?
ありがとうございます。
がhttp://content-security-policy.com/ –
何を見てみましょう:それは奇妙な
アップデートだ/私は知らない何をする – carlos