Home Web Front-end JS Tutorial Understanding Knockout and how to use Knockout to bind context_javascript skills

Understanding Knockout and how to use Knockout to bind context_javascript skills

May 16, 2016 pm 03:23 PM

Introduction to Knockout

Knockout, referred to as ko, is a lightweight javascript class library that uses the MVVM design pattern (i.e. Model, view, viewModel) to simply and elegantly implement two-way binding and real-time updates to help you use a clean data model. Create rich, responsive user interfaces.

Knockout has three core features:

1. Elegant dependency tracking: Any time the data model changes, the corresponding UI part will be automatically updated;

2. Declarative bindings: Simply associate the UI with your data model, and you can create complex dynamic UI;

3. Trivially extensible: It only takes a few lines of code to implement a custom behavior as a declarative binding;

Other advantages:

1. Pure javascript code;

2. Can be added to your existing web application at any time;

3. Lightweight, only 13K after GZIP;

4. Can work in almost all mainstream browsers ((IE 6+, Firefox 2+, Chrome, Safari, Edge, others);

ko uses the MVVM design pattern, that is, model view viewModel.

Simple example

There are <span data-bind="text: myItems().length"></span> items 
Copy after login

It’s that simple, you don’t have to write code to update the text content, it will automatically update when the array length changes. Similarly, if we want to use the array length to control the availability of the button, we only need:

<button data-bind="enable: myItems().length < 5">Add</button>
Copy after login

The following will introduce to you how to use Knockout to bind context

Binding context

Binding context is an object that holds data that you can reference in your bindings. Knockout automatically creates and manages inheritance relationships for binding contexts when applying bindings. The root of this hierarchy refers to the viewModel parameter you specify (ko.applyBindings(viewModel)).

Then use a control flow such as with or foreach each time to create a child node binding context to reference the nested viewModel data.

$parent

<h1 data-bind="text: name"></h1>
<div data-bind="with: manager">
 <!-- Now we're inside a nested binding context -->
 <span data-bind="text: name"></span> is the
 manager of <span data-bind="text: $parent.name"></span>
</div> 
Copy after login

$parents

This is an array representing all parent node view models

$parent[0]: represents the parent node;

$parent[1]: represents the grandparent node;

$parent[1]: represents the great-grandfather node;

.....and so on

$root

It is the root node view model object of the root context, generally specified through ko.applyBindings, equivalent to $parents[$parents.length - 1].

$component

If you are in the context of a specific component template, $component specifies that component, and its specified component is equivalent to $root. In the case of nested components, it represents the nearest component.

$data

It represents the viewModel object in the current context, $data and $root are equivalent. In a nested binding context, this parameter will be set to the current data item.

$data is very useful, for example, when you want to reference the viewModel itself rather than the viewModel's properties.

<ul data-bind="foreach: ['cats', 'dogs', 'fish']">
 <li>The value is <span data-bind="text: $data"></span></li>
</ul> 
$index(仅在foreach binding中可用)
Copy after login

It is the 0-based index entry of the array in the foreach binding. Unlike other context attributes, $index is observable, that is, it will be updated as the array item is updated.

$parentContext

specifies the binding context object at the parent node level. The difference from $parent is that it specifies data in the parent node rather than the binding context.

$rowData

It is the value of the original viewModel in the current context. Usually it is equivalent to $data. However, if the viewModel is modified by ko with observable, $data is unobservable and $rowData is observable.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if I encounter garbled code printing for front-end thermal paper receipts? What should I do if I encounter garbled code printing for front-end thermal paper receipts? Apr 04, 2025 pm 02:42 PM

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

Who gets paid more Python or JavaScript? Who gets paid more Python or JavaScript? Apr 04, 2025 am 12:09 AM

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

How to merge array elements with the same ID into one object using JavaScript? How to merge array elements with the same ID into one object using JavaScript? Apr 04, 2025 pm 05:09 PM

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

The difference in console.log output result: Why are the two calls different? The difference in console.log output result: Why are the two calls different? Apr 04, 2025 pm 05:12 PM

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

How to achieve parallax scrolling and element animation effects, like Shiseido's official website?
or:
How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? How to achieve parallax scrolling and element animation effects, like Shiseido's official website? or: How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? Apr 04, 2025 pm 05:36 PM

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

Is JavaScript hard to learn? Is JavaScript hard to learn? Apr 03, 2025 am 12:20 AM

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

How to implement panel drag and drop adjustment function similar to VSCode in front-end development? How to implement panel drag and drop adjustment function similar to VSCode in front-end development? Apr 04, 2025 pm 02:06 PM

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...

See all articles