Mithrilizer
Sublime Text插件,用于自动补全常见的Mithril方法
详情
安装次数
- 总计 440
- Win 181
- Mac 178
- Linux 81
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
说明
Mithrilizer
Sublime Text插件,用于自动补全常见的Mithril方法
[需要用Mithril 2.0 API更新]
Mithril是由Leo Horie创建的一个轻量级的JavaScript客户端MVC框架
安装
包控制
- 打开包控制:
首选项 -> 包控制
- 选择
包控制: 安装包
- 在搜索框中输入
Mithrilizer
并选择该包进行安装
使用方法
安装后,需要确保处于一个已将语法设置为JavaScript的页面
m -> m()
将显示
m('div',{
style: { },
config: 'function name'
},[
'Children'
])
关于m()的使用更多细节 此处
mi -> m('input')
将显示
m('input[type=]', oninput:, value: )
关于m()的使用更多细节 此处
ma -> m('a')
m('a[href=/myroute]', {config: m.route}, 'Myroute')
关于m()的使用更多细节 此处
mm -> Mithril模块
将显示
var mymodule = {};
mymodule.vm = 'Object literal {} or function Constructor'
mymodule.controller = function (options) {
mymodule.vm.init();
};
mymodule.view = function (ctrl) {
return 'view here';
}
m.module(document.body, mymodule);
关于m.module()的使用更多细节 此处
mw -> m.prop()
将显示
m.prop('initial value');
关于m.prop()的使用更多细节 此处
mw -> m.withAttr()
将显示
m.withAttr('string here', callback here)
关于m.withAttr()的使用更多细节 此处
mro -> m.route()
将显示
m.route({root Element, '/defaultRoute',
'/route1': Module name
});
m.route.mode = 'search/hash/pathname';
关于m.route()的使用更多细节 此处
mreq -> m.request()
将显示
m.request({
method: 'GET/POST',
url: '/user',
dataType: ,
callbackKey: ,
type: ,
})
关于m.request()的使用更多细节 此处
md -> m.deferred()
将显示
m.deferred('initial value');
关于m.deferred()的使用更多细节 此处
ms -> m.sync([])
将显示
m.sync([
Array of promises
]);
关于m.sync()的使用更多细节 此处
mt -> m.trust()
将显示
m.trust(content);
关于 m.trust() 的更多详细信息,请参见此处
mren -> m.render()
将显示
m.render(root Element, [
'Children elements'
]);
关于 m.render() 的更多详细信息,请参见此处
mrd -> m.redraw()
将显示
m.redraw(true/false);
关于 m.redraw() 的更多详细信息,请参见此处
mrs -> m.redraw.strategy()
将显示
m.redraw.strategy('all/diff/none');
关于 m.redraw.strategy() 的更多详细信息,请参见此处
mst -> m.startComputation() 和 m.endComputation()
将显示
m.startComputation();
m.endComputation();
关于 m.startComputation/m.endComputation 的更多详细信息,请参见此处