當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript h.h函數代碼示例

本文整理匯總了TypeScript中virtual-dom/h.h函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript h函數的具體用法?TypeScript h怎麽用?TypeScript h使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了h函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: renderPosts

function renderPosts(posts: Pair<PostInfo, PostContent>[]): Html {
  return h(
    "div",
    {},
    posts.map(p =>
      h("div", {}, [h("h2", {}, String(p[0].date)), h("div", {}, p[1])])
    )
  );
}
開發者ID:jooyunghan,項目名稱:js-fetch,代碼行數:9,代碼來源:blog.ts

示例2: renderTopics

function renderTopics(topics: { [word: string]: number }): Html {
  return h(
    "ul",
    {},
    Object.keys(topics).map(topic => {
      return h("li", {}, `${topic} - ${topics[topic]}`);
    })
  );
}
開發者ID:jooyunghan,項目名稱:js-fetch,代碼行數:9,代碼來源:blog.ts

示例3: renderPage

function renderPage(left: Html, main: Html): Html {
  return h("div", { style: { display: "flex" } }, [
    h("div#left", { style: { width: 200 } }, [left]),
    h("div#main", { style: { flex: 2 } }, [main]),
  ]);
}
開發者ID:jooyunghan,項目名稱:js-fetch,代碼行數:6,代碼來源:blog.ts

示例4: h

 posts.map(p =>
   h("div", {}, [h("h2", {}, String(p[0].date)), h("div", {}, p[1])])
開發者ID:jooyunghan,項目名稱:js-fetch,代碼行數:2,代碼來源:blog.ts

示例5: renderPostList

function renderPostList(posts: Pair<PostInfo, PostContent>[]): Html {
  return h("ul", {}, posts.map(p => h("li", {}, p[1])));
}
開發者ID:jooyunghan,項目名稱:js-fetch,代碼行數:3,代碼來源:blog.ts

示例6: renderSidePane

function renderSidePane(popular: Html, topics: Html): Html {
  return h("section", {}, [
    h("div#popular", {}, [h("h2", {}, "Popular"), popular]),
    h("div#topics", {}, [h("h2", {}, "Topics"), topics]),
  ]);
}
開發者ID:jooyunghan,項目名稱:js-fetch,代碼行數:6,代碼來源:blog.ts


注:本文中的virtual-dom/h.h函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。