- KnockoutJS Blueprints
- Carlo Russo
- 212字
- 2021-07-23 20:27:34
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
myViewModel.categories = ko.computed(function() { var results = myViewModel.allCategories(), filterByCategory = myViewModel.selectedCategory(); if (filterByCategory) { results = ko.utils.arrayFilter(results, function(category) { return category.name === filterByCategory; }); } return results; });
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
var myViewModel = { allCategories: ko.observableArray([]), selectedCategory: ko.observable(), selectedName: ko.observable("") };
Any command-line input or output is written as follows:
# npm install –g http-server
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Here we get the starting page, with an Error loading page."
- 基于粒計算模型的圖像處理
- Hands-On Image Processing with Python
- MySQL 8 DBA基礎教程
- oreilly精品圖書:軟件開發者路線圖叢書(共8冊)
- 征服RIA
- 西門子S7-200 SMART PLC編程從入門到實踐
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- C語言從入門到精通
- C++寶典
- Java Web從入門到精通(第3版)
- BeagleBone Robotic Projects(Second Edition)
- Emotional Intelligence for IT Professionals
- Sails.js Essentials
- PHP+MySQL動態網站開發從入門到精通(視頻教學版)
- Visual C++從入門到精通(第2版)