- 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."
- MySQL數(shù)據(jù)庫管理實(shí)戰(zhàn)
- 高手是如何做產(chǎn)品設(shè)計(jì)的(全2冊(cè))
- AngularJS Web Application Development Blueprints
- C語言最佳實(shí)踐
- The React Workshop
- Internet of Things with the Arduino Yún
- Hands-On C++ Game Animation Programming
- Learning Apache Mahout Classification
- 程序員修煉之道:通向務(wù)實(shí)的最高境界(第2版)
- Mathematica Data Analysis
- 微服務(wù)架構(gòu)深度解析:原理、實(shí)踐與進(jìn)階
- 深度學(xué)習(xí)程序設(shè)計(jì)實(shí)戰(zhàn)
- Getting Started with Electronic Projects
- R的極客理想:量化投資篇
- Visual FoxPro程序設(shè)計(jì)習(xí)題及實(shí)驗(yàn)指導(dǎo)