<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>
<title>JS Bin</title>
</head>
<body>
<div id="app">
</div>
<div id="status"></div>
</body>
</html>
axios.interceptors.response.use(function(response) {
console.log(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
})
let model = {
data: {
number: 0,
name: ''
},
fetch(id) {
return axios.get(`/books/${id}`).then((response)=>{
this.data = response.data
})
},
update(newData) {
let id = this.data.id
return axios.put(`/books/${id}`, newData).then(({data})=>{
this.data = data
})
}
}
let view = {
el: '#app',
template: `
<div>
书名:《__name__》,
数量:__number__
</div>
<div class="actions">
<button id="increaseByOne">加1</button>
<button id="decreaseByOne">减1</button>
<button id="square">平方</button>
<button id="cube">立方</button>
<button id="reset">归零</button>
</div>
`,
render(data) {
let html = this.template.replace('__name__', data.name)
.replace('__number__', data.number)
console.log(data)
$(this.el).html(html)
}
}
var controller = {
init({ view, model}) {
this.view = view
this.model = model
this.view.render(this.model.data)
this.bindEvents()
console.log(1)
this.fetchModel()
console.log(2)
},
events: [
{ type: 'click', selector: '#increaseByOne', fnName: 'add' },
{ type: 'click', selector: '#decreaseByOne', fnName: 'minus' },
{ type: 'click', selector: '#square', fnName: 'square' },
{ type: 'click', selector: '#cube', fnName: 'cube' },
],
bindEvents() {
this.events.map((event)=>{
$(this.view.el).on(event.type, event.selector, this[event.fnName].bind(this))
})
},
add(){
let newData = {number: this.model.data.number + 1}
this.updateModel(newData)
},
minus(){
let newData = {number: this.model.data.number - 1}
this.updateModel(newData)
},
square(){
let newData = {number: Math.pow(this.model.data.number, 2)}
this.updateModel(newData)
},
cube(){
let newData = {number: Math.pow(this.model.data.number, 3)}
this.updateModel(newData)
},
fetchModel(){
this.model.fetch(1).then(() => {
this.view.render(this.model.data)
})
},
updateModel(newData){
this.model.update(newData).then(()=>{
this.view.render(this.model.data)
})
}
}
controller.init({view, model})
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. |