跳至主要內容
Node.js 安装和 yarn 包管理

Install Node.js and npm@latest

在 Linux 下部署可能会存在一些问题,虽然安装方法很多,但是实践下来最好的方法是使用 apt:

  1. 安装 node.js
sudo apt-get install nodejs-legacy
sudo apt-get install npm

Someone小于 1 分钟Frontendnode.jsfrontendyarn
Vue.js 总结

Animating State

生命周期包括:

  • watch

  • keyup

  • computed

axios

In the project, it is important to use AJAX. Vue resource and axios is very useful.

yarn add axios -D

Someone大约 4 分钟Frontendvue.jsfrontend
Charts.js

Charts.js, npm Frappe Charts and Echarts

In flask web framework, sometimes we need to do the data visualization, there are some popular JavaScript to do this.

Official doc latest;


Someone大约 2 分钟Frontendfrontendfigures
CSS

Insert CSS

Three ways to insert css:

  • External style sheet
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>

Someone小于 1 分钟Frontendfrontend
JS code - JavaScript 常见语法

Json String

若现在有一个 JSON 对象的数组,可以使用的处理方法有:

  • JSON.stringify()

    处理 JSON 对象成为字符串

  • JSON.parse()

    处理字符串成为 JSON 对象

forEach()

如果需要对数组的遍历:

array.forEach(function(obj, index){
// ...
})

Someone大约 2 分钟Frontendjavascriptfrontend