0

私のindex.htmlは次のとおりです。

<!DOCTYPE html>
<html lang="en" ng-app="myApp">

<head>
  <meta charset="utf-8">

  <title>HTTP Request</title>

  <script src="angularjs"></script>
  <script src="appjs"></script>

</head>
<body>

    <div ng-controller="myCtrl">

        Test here : <input ng-model="testString">
        <p>Test String is : {{testString}}</p>
        <button ng-click="search()">Send HTTP Request</button>
        <p>Response:</p>
        {{data}}
    </div>

</body>
</html>

そして私の app.js は次のとおりです。

angular.module('myApp', [])
    .controller('myCtrl', ['$scope', '$http', function($scope, $http) {
        $scope.testString = "Hello....";

        $scope.search = function() {
//          alert("inside search");
            $http.get('www.google.com', {},
                function(response) {
                    $scope.data = response;
                    alert("success");
                },
                function(failure) {
                    alert("failure");
            });
        };
    }]);

そして、アラート(「内部検索」)に従って内部検索()関数を取得しています。しかし、私は応答も失敗も得ていません。ここで何をすればいいですか?

4

2 に答える 2