Sammy.jsJavaScript开发框架

联合创作 · 2023-09-19 12:03

Sammy.js 是一个微型的 JavaScript 框架用来简化 JavaScript 应用程序的编写,其核心只有 16K,压缩后 5.2K 大小。

示例代码:

// initialize the application
var app = Sammy('#main', function() {
 
// include a plugin
 
this.use('Mustache');

 
// define a 'route'
 
this.get('#/', function() {
   
// load some data
   
this.load('posts.json')
       
// render a template
       
.renderEach('post.mustache')
       
// swap the DOM with the new content
       
.swap();
 
});
});

// start the application
app
.run('#/');
浏览 1
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报