博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ember.js 1.0 RC3 发布,JavaScript 框架
阅读量:6680 次
发布时间:2019-06-25

本文共 755 字,大约阅读时间需要 2 分钟。

Ember是一个雄心勃勃的Web应用程序,消除了样板,并提供了一个标准的应用程序架构的JavaScript框架。

Ember.js 1.0 RC3 发布了,比起 RC2 版本,RC3 在性能又进一步提升,同时还包含如下改进:

  • When adjacent child views are scheduled for insertion they are are now batched together, and inserted together rather then one at a time.
  • Object deletion is now async, this prevents un-needed churn when destroying large interconnected object graphs.
  • The number of objects allocated during view rendering has been cut down.

示例代码:

01 MyApp.president = Ember.Object.create({
02   firstName: "Barack",
03   lastName: "Obama",
04  
05   fullName: function() {
06     return this.get('firstName') + ' ' + this.get('lastName');
07  
08   // Tell Ember that this computed property depends on firstName
09   // and lastName
10   }.property('firstName', 'lastName')
11 });

转载地址:http://ifnao.baihongyu.com/

你可能感兴趣的文章
[Phalcon] Phalcon系统默认事件列表
查看>>
安装Xcode主题
查看>>
微信公众平台开发教程(五)自定义菜单
查看>>
talend 连接mysql数据库没有权限
查看>>
Visual Studio 2010打开水晶报表是出现二进制
查看>>
Android 让图片等比例缩放的三种方法
查看>>
Jquery easyui datagrid 删除多行问题
查看>>
android 百度最新地图sdk包怎么去除 放大缩小按钮
查看>>
Java @override报错的解决方法
查看>>
Python 相机镜头
查看>>
redis数据类型
查看>>
PHP 标准库 SPL 之数据结构栈(SplStack)简单实践
查看>>
【推荐】腾讯android镜像(做Android开发的得好好利用下这个网站,国内的大公司还是可以滴……)...
查看>>
Unity3D GUI学习之GUI窗口的使用
查看>>
学生——成绩表查询
查看>>
Faster-rnnlm代码分析3 - EvaluateLM(前向计算ForwardPropagate)
查看>>
Python4周 入职培训的过程
查看>>
Linux 下的下载文件命令
查看>>
hibernate generator class=xxx id详解
查看>>
关于安装黑苹果
查看>>