Skip to content

Commit d3643f4

Browse files
committed
小型但页面应用
1 parent 27e26ae commit d3643f4

File tree

11 files changed

+8064
-36
lines changed

11 files changed

+8064
-36
lines changed

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
<projects>
66
</projects>
77
<buildSpec>
8+
<buildCommand>
9+
<name>com.aptana.editor.php.aptanaPhpBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
813
<buildCommand>
914
<name>com.aptana.ide.core.unifiedBuilder</name>
1015
<arguments>
@@ -13,5 +18,17 @@
1318
</buildSpec>
1419
<natures>
1520
<nature>com.aptana.projects.webnature</nature>
21+
<nature>com.aptana.editor.php.phpNature</nature>
1622
</natures>
23+
<filteredResources>
24+
<filter>
25+
<id>1468873162544</id>
26+
<name></name>
27+
<type>26</type>
28+
<matcher>
29+
<id>org.eclipse.ui.ide.multiFilter</id>
30+
<arguments>1.0-name-matches-false-false-node_modules</arguments>
31+
</matcher>
32+
</filter>
33+
</filteredResources>
1734
</projectDescription>

control/ajaxData.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//数据
2+
var newsList = [{
3+
id: 0,
4+
title: '李同学',
5+
content: 'Hi',
6+
date: new Date()
7+
}, {
8+
id: 1,
9+
title: '姚同学',
10+
content: 'Hello Word',
11+
date: new Date()
12+
}, {
13+
id: 2,
14+
title: '陈同学',
15+
content: 'Nice',
16+
date: new Date()
17+
}, {
18+
id: 3,
19+
title: '赖同学',
20+
content: '你好',
21+
date: new Date()
22+
}, {
23+
id: 4,
24+
title: '吴同学',
25+
content: '',
26+
date: new Date()
27+
}];

0 commit comments

Comments
 (0)