{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

七周七Web开发框架

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

七周七Web开发框架

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

延续畅销书《七周七语言》、《七周七数据库》的体例和风格
学习流行的Web开发框架:Sinatra、CanJS、AngularJS、Ring、Webmachine、Yesod和Immutant。
通过一本书认识和掌握7种主流的Web开发框架。
本书中的每一章都讨论了一个不同的Web框架,而且大部分都是不同的编程语言,目的是为你提供一些开发现代 Web 应用程序的全新理念、风格和技术。
Content Description

本书带领读者认识和学习7种影响现代Web应用并改娈了Web开发方式的框架,以期给Web开发者带来启发和思考。
本书延续了同系列的畅销书《七周七语言》、《七周七数据库》的体例和风格。全书共8章,前7章介绍了Sinatra、CanJS、AngularJS,Ring、Webmachine、Yesod和lmmutant共计7种Web开发框架,末章总结回顾了所有的知识点。书中对每一种框架的介绍,都为构建Web应用带来了独特而强大的思路。除此之外,书中还提供了一系列代码示例和在线资源以供参考。
本书适合有一定基础的Web开发人员阅读,能够帮助读者拓宽思路,激发更多的设计灵感。
Author Description

Jack Moffitt拥有使用不同语言、不同框架开发Web相关应用长达十年的经验。他是Mozilla研究所的高级研究工程师,他工作于Servo项目,正在开发一个试验性的新一代浏览器引擎。他还帮助创建了Ogg Vorbis格式,并且创建了Xiph.org基金会,这是一个非盈利的机构,致力于开源且完全免费的多媒体编解码器。

Fred Daoud是一位非常有热情的Web程序员,他喜欢尝试不同的新框架。他还是 Stripes …and Java Web Development Is Fun Again和Getting Started With Apache Click这两本Web框架书籍的作者。作为Modernizing Medicine的软件工程师,他使用Stripes、jQuery、YUI和CanJS进行日常开发。
Comments

Web应用程序的迅速发展迫切需要创新的解决方案。了解各种框架以及它们独特的特性,将会启发并促使你在面对日常工作中的挑战时从一个新的角度去思考。

本书涵盖了7种影响现代Web应用并改变了Web开发方式的框架:Sinatra、CanJS、AngularJS、Ring、Webmachine、Yesod和Immutant。其中每一种框架都为构建Web应用带来了独特而强大的思路:

? 拥抱Sinatra的简单性,它摒弃了大框架的繁复,转而回归Ruby的基础。
? 在客户端依赖CanJS,你可以在浏览器中使用JavaScript来创建完整的应用。
? AngularJS强调声明式编程,将声明式的HTML和JavaScript的混合起来,只需要说你想要什么,而无需关心具体怎么做。
? Ring将Web变成数据,再使用Clojure来轻松操纵这些数据。
? Webmachine会让你成为高级HTTP的行家里手,并专注于Erlang的强大特性。
? 使用Yesod来证明Haskell的高级类型系统不仅仅是学院派的玩具。
? 使用高端的Immutant绝对是企业级框架的明智之举。

不论你现在使用的是哪种框架,这7种框架都会影响到你的工作。
Catalogue

第1章Sinatra 1
1.1简单的领域特定语言 2
1.2第1天:构建一个书签应用 2
1.2.1你好,Sinatra 3
1.2.2用RSpec来测试 4
1.2.3REST风格的API 6
1.2.4数据持久化 6
1.2.5创建和读取书签 8
1.2.6编写自动化测试 9
1.2.7更新和删除书签 10
1.2.8我们在第1天学到的 11
1.3第2天:创建视图 12
1.3.1ERB简介 12
1.3.2Mustache介绍 17
1.3.3Slim介绍 20
1.3.4我们在第2天学到的 23
1.4第3天:添加新功能 24
1.4.1校验 24
1.4.2块参数 26
1.4.3过滤器 27
1.4.4为书签打上标签 28
1.4.5添加标签的API支持 31
1.4.6使用正则表达式来匹配路由 33
1.4.7我们在第3天学到的 34
1.5总结 35
1.5.1Sinatra的强项 35
1.5.2Sinatra的弱项 35
1.5.3最后的思考 36
第2章CanJS 37
2.1CanJS的独一二之处 37
2.2第1天:创建对象和同步变化 39
2.2.1你好,CanJS! 40
2.2.2构建和扩展对象 41
2.2.3观察属性的变化 44
2.2.4使用CanJS创建一个前端书签应用 46
2.2.5连接模型与服务器 47
2.2.6渲染视图 48
2.2.7动态绑定 50
2.2.8我们在第1天学到的 50
2.3第2天:创建控制器 51
2.3.1将控制器绑定到页面元素上 52
2.3.2监听UI事件 53
2.3.3使用data()方法从页面获取数据模型 54
2.3.4使用观察者实现控制器之间的沟通 55
2.3.5创建一个表单控制器 57
2.3.6我们在第2天学到的 60
2.4第3天:与模型的协作 61
2.4.1添加校验 62
2.4.2实现标签的处理 64
2.4.3过滤书签 66
2.4.4创建一个标签列表 69
2.4.5使用路由管理浏览器的位置 71
2.4.6我们在第3天学到的 73
2.4.7对CanJS的创造者Justin
B. Meyer的采访 74
2.5总结 76
2.5.1CanJS的强项 76
2.5.2CanJS的弱项 76
2.5.3最后的思考 76
第3章AngularJS 77
3.1概览 77
3.2第1天:使用依赖注入 79
3.2.1你好,AngularJS 80
3.2.2创建服务 83
3.2.3换个角度来看我们的书签应用前端 86
3.2.4使用资源服务 87
3.2.5为服务写自动化测试 89
3.2.6我们在第1天学到的 93
3.3第2天:创建控制器和视图 93
3.3.1创建控制器和使用视图指令 94
3.3.2利用数据双向绑定的优势 97
3.3.3创建书签表单 98
3.3.4关于作用域的重要注意事项 100
3.3.5端到端的自动化测试 102
3.3.6我们在第2天学到的 104
3.4第3天:创建过滤器和路由 105
3.4.1为书签添加标签 106
3.4.2构建一个标签列表 107
3.4.3通过过滤器操作数据 108
3.4.4定义路由 112
3.4.5我们在第3天学到的 114
3.4.6对AngularJS创建者Mi?ko Hevery的采访 115
3.5总结 116
3.5.1AngularJS的强项 116
3.5.2AngularJS的弱项 117
3.5.3最后的思考 117
第4章Ring 118
4.1Ring简介 118
4.2第1天:基础组件 120
4.2.1起步 121
4.2.2Hello, World! 121
4.2.3用Korma处理数据 124
4.2.4用Hiccup把数据转化为HTML 130
4.2.5使用Compojure处理路由 133
4.2.6我们在第1天学到的 136
4.3第2天:拼接的模式 137
4.3.1定义API 137
4.3.2处理JSON 138
4.3.3验证输入 140
4.3.4可组合的路由 143
4.3.5我们在第2天学到的 146
4.4第3天:构建应用的其他方法 147
4.4.1Ring中间件 147
4.4.2Enlive 149
4.4.3关于测试 153
4.4.4我们在第3天学到的 154
4.4.5对James Reeves的采访 155
4.5总结 156
4.5.1Ring的强项 156
4.5.2Ring的弱项 157
4.5.3最后的思考 158
第5章Webmachine 159
5.1Webmachine简介 159
5.2第1天:HTTP请求状态机 161
5.2.1起步 162
5.2.2Hello, World 162
5.2.3和资源函数一起工作 165
5.2.4资源函数 166
5.2.5请求转发 168
5.2.6参数化转发 170
5.2.7我们在第1天学到的 171
5.3第2天:构建应用 172
5.3.1短链接 172
5.3.2使用Mustache模板引擎 179
5.3.3Petite里的模板 182
5.3.4处理多种内容类型 184
5.3.5我们在第2天学到的 186
5.4第3天:照亮HTTP的阴暗面 186
5.4.1让资源可缓存 187
5.4.2授权 193
5.4.3我们在第3天学到的 196
5.4.4对Justin Sheehy的采访 197
5.5总结 198
5.5.1Webmachine的强项 198
5.5.2Webmachine的弱项 199
5.5.3最后的思考 199
第6章Yesod 200
6.1Yesod简介 201
6.1.1组成部分 201
6.1.2计划 201
6.2第1天:你不能搞错的数据 202
6.2.1新手入门 202
6.2.2Hello, World 203
6.2.3使用DSL描述数据 205
6.2.4使用模型 207
6.2.5改变和删除模型 210
6.2.6我们在第1天学到的 211
6.3第2天:视图、表单和认证 212
6.3.1Ye Olde的模板语言 213
6.3.2功能性表单 216
6.3.3认证和授权 219
6.3.4我们在第2天学到的 223
6.4第3天:继续Rumble 224
6.4.1创建头版 225
6.4.2创建一个发布新闻表单 228
6.4.3查看新闻与提交评论 230
6.4.4我们在第3天学到的 233
6.4.5对Michael Snoyman的采访 234
6.5总结 237
6.5.1Yesod的强项 237
6.5.2Yesod的弱项 238
6.5.3最后的思考 238
第7章Immutant 239
7.1 Immutant简介 239
7.1.1Immutant的特性 240
7.1.2计划 240
7.2第1天:不仅仅是网络基础 241
7.2.1开始 241
7.2.2你好,世界 242
7.2.3分布式缓存 244
7.2.4计划任务 249
7.2.5我们在第1天学到的 250
7.3第2天:构建数据管道 251
7.3.1消息队列 251
7.3.2管道 255
7.3.3Overwatch的管道 257
7.3.4我们在第2天学到的 262
7.4第3天:多语言应用 263
7.4.1叠加 263
7.4.2集群 268
7.4.3我们在第3天学到的 272
7.4.4对Jim Crossley的采访 273
7.5总结 275
7.5.1Immutant的强项 275
7.5.2Immutant的弱项 275
7.5.3最后的思考 276
第8章结束 277
8.1关键想法 277
8.1.1简单性 278
8.1.2代码运行在何处 278
8.1.3组合 279
8.1.4声明式优先于指令式 279
8.1.5动态类型和静态类型 280
8.1.6状态机 280
8.1.7交互性 281
8.2快乐的探索吧 281

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book