中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Cordova學習筆記 http及run方法

發布時間:2020-08-03 10:48:27 來源:網絡 閱讀:428 作者:hello_world007 欄目:開發技術
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title>test</title>
</head>
<body>
    <div ng-app="myApp" ><!--ang-app 指令告訴 AngularJS, <div> 元素是 AngularJS 應用程序 的"所有者"-->
        <div>
            name:<input name="name" ng-model="name"/> <!--ng-model 指令把輸入域的值綁定到應用程序變量 name-->
        </div>
        <div ng-bind="name"></div><!--指令把應用程序變量 name 綁定到某個段落的 innerHTML。-->
        `name`<!--這里與上面的model建立了數據雙向綁定  {{}}等同于 ng_bind-->
        <div ng-init="sex='f';age='23';person={name:'李三'};number=[5,6];"> <!--指令為 AngularJS 應用程序定義了 初始值 等價于data-ng-init -->
            `sex`,`age`
        </div>
        <div>
            `sex`,`age`
        </div>
        <div>
          `person`.`name` ; {{number[0]}}+6={{5+6}},{{'對'+'的'+age}} <!--表達式 很像 JavaScript 表達式:它們可以包含文字、運算符和變量-->
        </div>

        <div ng-controller="firstCtl"><!--定義了應用程序控制器-->
            title:<input name="title" ng-model="title"><!--我們可以把我們的 model 存放在 scope 上,來達到雙向你綁定-->
            `title`
        </div>
        <div ng-controller="secondCtl">
            <ul>
                <li ng-repeat="n in numbs"> <!--ng-repeat 是一個循環指令-->
                    `n`
                </li>
            </ul>
        </div>
        `testdata`
    </div>
    <script src="js/angular.js"></script>
    <script type="text/javascript">
        var myApp = angular.module('myApp', []);
        myApp.controller('firstCtl', function($scope) { //控制器的 $scope 是控制器所指向的應用程序 HTML 元素 angular 中$scope 是連接 controllers(控制器)和 templates(模板 view/視圖)的主要膠合體。
            $scope.title = 'Hello';
        });

        myApp.run(['$rootScope',function($rootScope){ //只對全局作用域起作用
            $rootScope.testdata = 'heheh';
        }]);
        myApp.controller('secondCtl', function($scope , $http) {
            $scope.numbs  = [111,222,333,444];
            $http({
                method: 'GET',
                url: 'http://www.test.com/test2.php'
            }).then(function successCallback(response) {
                /*
                 response這個對象有如下屬性:
                 data – {string|Object} – 服務器返回的數據
                 status – {number} – 響應的 HTTP 狀態碼 .
                 headers – {function([headerName])} – Header getter function.
                 config – {Object} – The configuration object that was used to generate the request.
                 statusText – {string} – 響應的 HTTP 狀態文件本.
                 */
                console.log(response);
            }, function errorCallback(response) {
                console.log(response);
            });

            $http({
                method: 'POST',
                url: 'http://www.test.com/test2.php',
                data:"test=test22222",
                headers: {
                    'Content-Type': 'application/x-www-form-urlencoded'
                },
            }).then(function successCB(response){
                console.log(response);
            },function errorCB(response){
                console.log(response);
            });

            $http.post('http://www.test.com/test2.php',
                    {'test':'po'},
                    {params:{'te':'te'}}).then(function(response){
                console.log(response);
            },function(response){
                console.log(response);
            });

        });
    </script>

</body>
</html>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华坪县| 余庆县| 广元市| 衡水市| 娄烦县| 正宁县| 遂平县| 东明县| 安平县| 蒲江县| 闵行区| 民丰县| 白山市| 岗巴县| 龙井市| 新民市| 达日县| 大城县| 东阿县| 博白县| 施秉县| 彭阳县| 新民市| 磐石市| 和顺县| 新干县| 泰顺县| 高密市| 鄂州市| 商丘市| 准格尔旗| 繁峙县| 静海县| 昂仁县| 大竹县| 谷城县| 诸暨市| 江油市| 承德市| 长寿区| 忻州市|