- 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."
- Extending Jenkins
- Drupal 8 Blueprints
- Python for Secret Agents:Volume II
- 程序員考試案例梳理、真題透解與強化訓練
- Visual C++串口通信技術詳解(第2版)
- Java Web開發技術教程
- Apache Mahout Clustering Designs
- 數據結構習題解析與實驗指導
- Learning OpenStack Networking(Neutron)
- iPhone應用開發從入門到精通
- Extreme C
- 實戰Java高并發程序設計(第2版)
- PrimeFaces Blueprints
- Unity 5.X從入門到精通
- PHP 8從入門到精通(視頻教學版)