zoukankan      html  css  js  c++  java
  • angular自己的笔记

      angular知道怎么用了, 就打算读一读源代码;

    <html ng-app="phonecatApp">
        <head>
            <meta charset="utf-8" />
            <script src="http://cdn.bootcss.com/jquery/2.1.1-rc2/jquery.min.js"></script>
        <!--这个angular就是下面我贴出来的JS代码-->
    <script type="text/javascript" src="angular_devolop.js"></script> </head> <body ng-controller="PhoneListCtrl" id="p"> <ul> <li ng-repeat="phone in phones" t={{txt}}> {{phone.name}} <p>{{phone.snippet}}</p> </li> </ul> </body> <script> //初始化用户模块; var phonecatApp = angular.module('phonecatApp', []); //为用户的控制器添加反射, 就是回调了, 文档加载完毕就会用到了; phonecatApp.controller('PhoneListCtrl', function($scope) { $scope.txt = "text"; $scope.phones = [ {'name': 'Nexus S', 'snippet': 'Fast just got faster with Nexus S.'}, {'name': 'Motorola XOOM™ with Wi-Fi', 'snippet': 'The Next, Next Generation tablet.'}, {'name': 'MOTOROLA XOOM™', 'snippet': 'The Next, Next Generation tablet.'} ]; }); </script> </html>

      JS代码:

      http://files.cnblogs.com/diligenceday/angular_devolop.js

  • 相关阅读:
    fastapi教程进阶
    fastapi快速入门
    Linux yum安装PostgreSQL9.6
    harbor helm仓库使用
    Dockfile文件解析
    K8S概念理解
    转载---Beats:如何使用Filebeat将MySQL日志发送到Elasticsearch
    Elasticsearch中text与keyword的区别
    filebeat知识点
    logstash知识点
  • 原文地址:https://www.cnblogs.com/diligenceday/p/4167786.html
Copyright © 2011-2022 走看看