本文整理汇总了TypeScript中mithril.withAttr函数的典型用法代码示例。如果您正苦于以下问题:TypeScript withAttr函数的具体用法?TypeScript withAttr怎么用?TypeScript withAttr使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了withAttr函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: function
const view = function(ctrl) {
return m("div", [
m("div", [
m("input[type=text]", { oninput: m.withAttr("value", ctrl.text) }),
m("button", { onclick: ctrl.sendMessage }, "送信")
]),
m("div", [
m("ul", ctrl.messages().map(msg => // 何かimmutable js使ったら上手く行かなかったので仕方なく
m("li", msg)
))
])
]);
}
开发者ID:cedretaber,项目名称:akkahttptest,代码行数:13,代码来源:app.ts
示例2: function
let SearchBarView = function (ctrl) {
return m('Label', {
'class': CLASS_TREEVIEW_SEARCH_LABEL
}, [
'Filter: ',
m('input', {
type: 'text',
name: 'treeview-search',
oninput: m.withAttr('value', ctrl.searchTerm),
value: ctrl.searchTerm()
})
])
}
开发者ID:Draggha,项目名称:pickdrasil-mithril,代码行数:13,代码来源:searchbar.ts
示例3: m
console.assert(typeof m.version === "string");
console.assert(m.version.indexOf(".") > -1);
}
{
const vnode = m.trust("<br>");
}
{
const vnode = m.fragment({key: 123}, [m("div")]);
console.assert((vnode.children as Array<m.Vnode<any, any>>).length === 1);
console.assert(vnode.children![0].tag === 'div');
}
{
const handler = m.withAttr("value", (value) => {});
handler({currentTarget: {value: 10}});
}
{
const params = m.parseQueryString("?a=1&b=2");
const query = m.buildQueryString({a: 1, b: 2});
}
{
const root = window.document.createElement("div");
m.render(root, m("div"));
console.assert(root.childNodes.length === 1);
}
{
开发者ID:Crevil,项目名称:DefinitelyTyped,代码行数:31,代码来源:test-api.ts
注:本文中的mithril.withAttr函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论