- JavaScript Security
- Y.E Liang
- 222字
- 2021-08-05 17:18:56
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: "A jQuery .get()
request simply performs a GET request from a server."
A block of code is set as follows:
var jqxhr = $.get("http://example.com/data", function() { alert( "success" ); }) .done(function() { alert( "second success" ); }) .fail(function() { alert( "error" ); }) .always(function() { alert( "finished" ); });
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 express = require('express'); var bodyParser = require('body-parser'); var app = express(); var session = require('cookie-session'); var csrf = require('csrf'); app.use(csrf()); app.use(bodyParser());
Any command-line input or output is written as follows:
sudo pip install tornado==3.1 sudo pip install pymongo sudo pip install tornado-cors
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: "Click on Submit."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Java面向對象思想與程序設計
- Bulma必知必會
- Animate CC二維動畫設計與制作(微課版)
- Django:Web Development with Python
- Data Analysis with IBM SPSS Statistics
- 汽車人機交互界面整合設計
- Modernizing Legacy Applications in PHP
- MySQL數據庫應用實戰教程(慕課版)
- Three.js權威指南:在網頁上創建3D圖形和動畫的方法與實踐(原書第4版)
- Microsoft Exchange Server 2016 PowerShell Cookbook(Fourth Edition)
- 軟硬件綜合系統軟件需求建模及可靠性綜合試驗、分析、評價技術
- 軟件開發中的決策:權衡與取舍
- 數據結構與算法詳解
- Java Web應用開發
- HTML5+CSS+JavaScript深入學習實錄