文件名称:RunwayJS:只是 MVC 中的“M”
文件大小:14KB
文件格式:ZIP
更新时间:2024-07-04 18:23:35
JavaScript
跑道JS 只是 MVC 中的“M”。 RunwayJS 提供了非常简单的 JavaScript 模型和集合,它们的行为类似于常规对象和数组,同时仍然让您观察变化。 楷模 模型是基本的键/值 Blob。 你可以像这样创建一个: // Define the 'Item' class var Item = runway . model ( ) ; // Create a new instance var myItem = new Item ( { id : '1234' , name : 'Whatsit' } ) ; // Watch for changes on the name myItem . on ( 'change:name' , function ( newName ) { console . log ( newName ) ; } ) ; // S
【文件预览】:
RunwayJS-master
----.gitignore(19B)
----package.json(510B)
----src()
--------runway.js(13KB)
----LICENSE.md(1KB)
----.travis.yml(86B)
----Gruntfile.js(2KB)
----README.md(10KB)
----test()
--------collection.test.js(8KB)
--------eventify.test.js(4KB)
--------model.test.js(4KB)
--------is.test.js(911B)