91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

无为县| 平顶山市| 云浮市| 溧水县| 寿光市| 若羌县| 武功县| 崇左市| 广水市| 文成县| 彭阳县| 防城港市| 卫辉市| 和静县| 张家界市| 长春市| 拉萨市| 辽源市| 田东县| 斗六市| 章丘市| 什邡市| 哈巴河县| 淮南市| 淄博市| 岑巩县| 达尔| 霍城县| 仁布县| 浪卡子县| 泸定县| 特克斯县| 女性| 米脂县| 四川省| 东源县| 顺昌县| 多伦县| 乡城县| 南陵县| 宁明县|