zoukankan      html  css  js  c++  java
  • -_-#【Backbone】Model

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <link rel="stylesheet" href="../../app-min.css">
    </head>
    <body>
        <script src="../../jquery/jquery-1.10.2.js"></script>
        <script src="../underscore.js"></script>
        <script src="../backbone.js"></script>
        <script>
            var Man = Backbone.Model.extend({
                url: '/man/',
                initialize: function() {
                    console.log('initialize')
                    // 初始化时绑定监听
                    this.bind('change:name', function() {
                        var name = this.get('name')
                        console.log('you changed name to ' + name)
                    })
                    this.bind('invalid', function(model, error) {
                        console.log(error)
                    })
                    this.bind('error', function(model, error) {
                        console.log(error)
                    })
                },
                defaults: {
                    name: 'name',
                    age: 'age'
                },
                validate: function(attributes) {
                    if (attributes.name == '') {
                        return 'name不能为空'
                    }
                },
                aboutMe: function() {
                    return 'wo jiao ' + this.get('name')
                }
            })
    
            var man = new Man
            console.log(man.get('name'))
            man.set({name: ''})
            console.log(man.get('name'))
            console.log(man.aboutMe())
            // 调用save方法时会post对象的所有属性到server端
            // 调用fetch方法是又会发送get请求到server端
            // 接受数据和发送数据均为json格式
            man.save() // save时触发验证。根据验证规则,弹出错误提示
    
            //man.fetch()
            //man.fetch({url:'/man/'})
            man.fetch({
                url: '/man/',
                success: function(model, response) {
                    // model 为获取到的数据
                    console.log(model.get('name'))
                },
                error: function() {
                    console.log('error')
                }
            })
            // 你设置了urlRoot之后,你发送PUT和DELETE请求的时候,其请求的url地址就是:/baseurl/[model.id]
        </script>
        <article class="content">
            <pre>var Man = Backbone.Model.extend({
        url: '/man/',
        initialize: function() {
            console.log('initialize')
            // 初始化时绑定监听
            this.bind('change:name', function() {
                var name = this.get('name')
                console.log('you changed name to ' + name)
            })
            this.bind('invalid', function(model, error) {
                console.log(error)
            })
            this.bind('error', function(model, error) {
                console.log(error)
            })
        },
        defaults: {
            name: 'name',
            age: 'age'
        },
        validate: function(attributes) {
            if (attributes.name == '') {
                return 'name不能为空'
            }
        },
        aboutMe: function() {
            return 'wo jiao ' + this.get('name')
        }
        })
    
        var man = new Man
        console.log(man.get('name'))
        man.set({name: ''})
        console.log(man.get('name'))
        console.log(man.aboutMe())
        // 调用save方法时会post对象的所有属性到server端
        // 调用fetch方法是又会发送get请求到server端
        // 接受数据和发送数据均为json格式
        man.save() // save时触发验证。根据验证规则,弹出错误提示
    
        //man.fetch()
        //man.fetch({url:'/man/'})
        man.fetch({
        url: '/man/',
        success: function(model, response) {
            // model 为获取到的数据
            console.log(model.get('name'))
        },
        error: function() {
            console.log('error')
        }
    })
    // 你设置了urlRoot之后,你发送PUT和DELETE请求的时候,其请求的url地址就是:/baseurl/[model.id]</pre>    
        </article>
    </body>
    </html>
  • 相关阅读:
    ASP.NET 高级编程基础第七篇—开发原则2
    反垃圾邮件引发的Email格式变异!
    .NET框架程序设计生成,打包,部署及管理应用程序与类型(2:Assembly的生成以及版本信息)
    .NET框架程序设计NET框架开发平台的体系架构概览(FCL,CTS,CLS)
    .NET框架程序设计生成,打包,部署及管理应用程序与类型(1:程序集的PE格式)
    [电影]蝴蝶效应
    .NET框架程序设计.NET框架开发平台的体系架构概览(.NET程序本质)
    [转贴]浅析.NET Framework对PE文件格式的扩展
    [MSDN今日讲座]Whidbey 开发系列讲座二:Visual Studio 2005团对开发系统简介
    郁闷!我的Gmail邮箱的问题!
  • 原文地址:https://www.cnblogs.com/jzm17173/p/4171833.html
Copyright © 2011-2022 走看看