Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Atom
Search
Alibaba.com
May 31, 2013
Technology
180
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Atom
Atom is growing up
Alibaba.com
May 31, 2013
More Decks by Alibaba.com
See All by Alibaba.com
jQuery Selector 源码剖析
alibaba
0
170
Backbone.js 初探
alibaba
2
260
Other Decks in Technology
See All in Technology
【CEDEC2026】コードレビュー支援ツール開発から学ぶ:LLMを用いた業務システムの実践的な運用設計と誤出力対策
cygames
PRO
0
630
Agent 時代の Kaggle 展望 / kaggle-in-the-agentic-era
upura
1
670
制約理論(ToC)入門 2026版
recruitengineers
PRO
6
2.1k
PLATEAU で バーチャル花火大会
tatsuya1970
0
110
今こそ聞きたいソフトウェア設計 ドメイン駆動設計再入門
masuda220
PRO
17
6.8k
ラジオの科学
frievea
0
280
FORENSIA: ローカルLLMフォレンジックハーネス
sumeshi
2
350
OSPN.JPバージョンアップ作業進捗のご報告 / 20260801-osc26kyoto
akkiesoft
0
420
事業価値と Engineering 2026年度版
recruitengineers
PRO
44
22k
モダンフロントエンド 開発研修
recruitengineers
PRO
3
560
AI駆動開発は個人技からチーム戦へ:組織でAIを使いこなすための実践設計
moongift
PRO
0
480
20260804_Q4AzureUpdateBite_FabricDataAgentの精度を高める設計.pdf
matayuuu
1
120
Featured
See All Featured
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
56k
Embracing the Ebb and Flow
colly
88
5.1k
The Pragmatic Product Professional
lauravandoore
37
7.4k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
340
Fireside Chat
paigeccino
42
4k
Utilizing Notion as your number one productivity tool
mfonobong
4
520
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.9k
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
400
Bridging the Design Gap: How Collaborative Modelling removes blockers to flow between stakeholders and teams @FastFlow conf
baasie
0
640
Unsuck your backbone
ammeep
672
58k
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
650
Transcript
Atom is Growing Up!
Atom 阶段回顾 连沁 2013-05-31
强调下模块编写/引用的规范
• 模块编写 使用 CMD 模块规范,每个js文件就是一个模块 模块使用 匿名方式 编写 • 模块之间引用
引用 自身的私有模块 ,使用 相对路径 引用 其他的公用模块 ,使用 以htdocs为根目录的绝对路径 禁止引用其他模块的私有模块!!! • html/vm 引用模块 禁止在非js文件中定义模块!!! 引用模块只能使用 seajs.use 接口, 禁止使用script标签同步引入!! 引用模块使用 全路径 ,推荐使用 #stamp 宏包裹,保证时间戳准确
开发中一些常见问题
为什么js里不能使用seajs.use? • 首先,规范 • 在seajs的模式里面,所有的js文件都是 CMD 模块。 • 而在 CMD
模块中,对模块的引用只能通过 require() 及 require.async() 的方式, seajs.use的用法是 不符合规范 的
为什么js里不能使用seajs.use? • 其次,性能 • 正常的使用 `seajs.use` 去加载文件,流程如 下 • ...
| | - 在 html/vm 里写 seajs.use 去请求模 块(js文件) ====异步===> 模块 ====> 运 行 callback | | - 其他html渲染,script运行等 | ... 除了 atom.js 以外所有的js文件都是 异 步加载 的
看看demo与结果
i18n相关 • 设置页面i18n • <script type='text/javascript'> // 页面中越早 调用越好 //
建议在引入 atom.js 之后马上设 置 seajs.setLocale(locale); </script>
i18n相关 • 模块里使用i18n • 使用 {locale} 来代替 i18n 中标识语言的部分 •
使用变量代替在 require 中的位置 (该用法是 为了解决独角兽时间戳失效的问题,独角兽端 的修复在7月份解决) • // 时间戳问题修复前,要这么使用 // #require "i18n/en-us.js" // #require "i18n/zh-cn.js" // #require "i18n/zh-tw.js" var i18nStr = './i18n/{locale}.js'; var i18n = require(i18nStr) || {}; // 时间戳问题解决后(2013-07完成),这 么使用 var i18n = require('./i18n/{locale}.js') || {};
Combo相关 • 页面上可以在任何地方使用seajs.use,最终 请求会在domReady的时候统一 Combo后 发 出 • 可以使用 seajs.flush()
提前发出请求(一般 用于首屏优化) • url过长的时候会自动拆分成多个 • 做完combo后的页面至少有2个串行的js请 求
Q & A