<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/axios/0.17.1/axios.min.js"></script>
<script src="https://cdn.bootcss.com/vue/2.5.13/vue.min.js"></script>
<title>JS Bin</title>
</head>
<body>
<div id="app">
</div>
<div id="status"></div>
</body>
</html>
axios.interceptors.response.use(function(response) {
let {
config: {
url, method, data
}
} = response
data = JSON.parse(data || '{}')
let row = {
id: 1,
name: 'JavaScript高级程序设计',
number: 2
}
if (url === '/books/1' && method === 'get') {
response.data = row
} else if (url === '/books/1' && method === 'put') {
response.data = Object.assign(row, data)
}
return response
})
class EventHub {
constructor() {
this.events = {}
}
on(eventName, fn) {
if (!this.events[eventName]) {
this.events[eventName] = []
}
this.events[eventName].push(fn)
}
emit(eventName, params) {
let fnList = this.events[eventName]
fnList.map((fn) => {
fn.apply(null, params)
})
}
off(eventName, fn) {
let fnList = this.events[eventName]
for (let i = 0; i < fnList.length; i++) {
if (fnList[i] === fn) {
delete fnList[i]
break
}
}
}
}
class Model extends EventHub {
constructor(options) {
super()
this.data = options.data || {}
this.resource = options.resource
this.baseUrl = options.baseUrl || '/'
}
fetch(id) {
return axios.get(this.baseUrl + this.resource + 's/' + id)
.then(({
data
}) => {
this.data = data
this.emit('changed')
})
}
create(data) {
return axios.post(this.baseUrl + this.resource + 's', data)
.then(({
data
}) => {
this.data = data
this.emit('changed')
})
}
destroy() {
let id = this.data.id
return axios.delete(this.baseUrl + this.resource + 's/' + id)
.then(() => {
this.data = {}
this.emit('changed')
})
}
update(newData) {
let id = this.data.id
return axios.put(this.baseUrl + this.resource + 's/' + id, newData)
.then(({
data
}) => {
this.data = data;
this.emit('changed')
})
}
}
var model = new Model({
resource: 'book',
data: {
id: null,
number: 0,
name: null
}
})
var view = new Vue({
el: '#app',
data: {
name: '未命名',
number: 0,
n: 1
},
template: `
<div>
<div>
书名:《{{name}}》,
数量:{{number}}
</div>
<div><input v-model="n"></div>
<div class="actions">
<button v-on:click="add">加N</button>
<button v-on:click="minus">减N</button>
<button v-on:click="square">平方</button>
<button v-on:click="cube">立方</button>
<button v-on:click="reset">归零</button>
</div>
</div>
`,
created(){
},
methods: {
add() {
let newData = {
number: this.number + (this.n - 0)
}
this.updateModel(newData)
},
minus() {
let newData = {
number: this.number - (this.n - 0)
}
this.updateModel(newData)
},
square() {
let newData = {
number: Math.pow(this.number, 2)
}
this.updateModel(newData)
},
cube() {
let newData = {
number: Math.pow(this.number, 3)
}
this.updateModel(newData)
},
reset() {
this.updateModel({
number: 0
})
},
updateModel(newData) {
model.update(newData)
}
}
})
model.on('changed', () => {
console.log('c')
view.name = model.data.name
view.number = model.data.number
})
model.fetch(1)
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |