在Sencha Touch2.0中,可以定义不同模型之间的关联关系.例如,在开发博客网站的时候,可以首先定义用户(User)模型,然后为用户定义文章(Article)模型.一个用户可以发表多篇文章,因此可在用户模型与文章模型之间建立一对多的关联关系,在文章模型与用户模型之间建立多对一的关联关系.一篇文章可以拥有多个读者所发表的多篇评论,因此定义评论模型,并且在文章与评论模型之间建立一对多的关联关系.一个用户可以在网站中发表多篇评论,因此可在用户模型与评论模型之间建立一对多的关联关系.这3个模型的…
[翻译]The Layout System 布局 In Sencha Touch there are two basic building blocks: componentsand containers. When you instantiate both with no configuration, they look the same. However, there is one important difference: containers can containcomponents…
Sencha Touch2 工作笔记 Ext.dataview.List activate( this, newActiveItem, oldActiveItem, eOpts ) Fires whenever item within the Container is activated. 该事件可以解决在Ext.navigation.View容器中 点击返回按钮再次显示LIST的时候刷新问题      …
title: [概率论]1-1:概率定义(Definition of Probability) categories: Mathematic Probability keywords: Sample Space 样本空间 Finite Sample Space 有限样本空间 Kolmogorov axioms(Probability Axioms) 柯氏公理 Disjointed Events 不想交事件 Definition of Probability 概率定义 Properties of…
c++11 用户定义字面量 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #include <vector> #include <map> // 用户自定义字面值,或者叫“自定义后缀”更直观些,主要作用是简化代码的读写. ; } long double operator"" _m(long double x) { return x; } ; }…
直接贴代码 timeline.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="../pub/touch-2.3.1/resources/css/sencha-touch.css"> <script type…
最近在review一个项目的代码, 发现返回操作比较乱,很多"从哪里来,到哪里去的操作"被写的一塌糊涂; 按照ios系统的进场出场动画(人家的体验还是很好的,必须借鉴)为标准,使用sencha模拟一套动画, 来看看以下是两个函数,作为重载: /** * 重载跳转方法 */ gotoFn=function(){ console.log("进入gotoFn函数.......arguments:") console.log(arguments); console.log(…
1.安装 nodejs 2.安装 cordova: npm install -g cordova 3.创建一个工程: cordova create MyApp com.example.MyApp MyApp 其中:第一个 MyApp是文件夹的名称: com.example.MyApp 是app id 第二个MyApp是工程的名称,也是应用的名称 4.进入文件夹 cd MyApp 5.创建一个android的应用 cordova platform add android 6.用eclipse新建a…
注意点: 1.设置a标签的width 和 height 的时候,直接设置是没用的,可以以这样两种方式设置 (1). display:block; (2). float:left; 2.设置下拉菜单,最重要的是 (1).用定位   position: absolute; 定义  li 标签下面的ul 标签,隐藏2级栏目,display:none; (2).将li列表的浮动效果取消,float:none; (3).然后定义鼠标滑过  li标签定义的效果, li : hover ul {display…
这里会通过与Java比较的方式来说明scala是如何创建类的. 先来看一下Java中是如何定义一个类的: public class Car { private final int year; private int miles; public Car(int yearOfMake) { year = yearOfMake; } public int getYear() { return year; } public int getMiles() { return miles; } public…