Routeless, targetless, runnable routes

栏目: IT技术 · 发布时间: 6年前

内容简介:Now in beta HCX (HTML Compiler eXtensions) supports routeless, targetless, runnable routes. “What does that mean?”, you might ask. An example shows best:Click on “Show Panel One” and “This is panel one” will show up between the router start and end tags. C

Now in beta HCX (HTML Compiler eXtensions) supports routeless, targetless, runnable routes. “What does that mean?”, you might ask. An example shows best:

<script type="module" src="../hcx-router.js"></script><template id=”panelOne">
  <div>This is panel one.</div>
</template><template id="panelTwo">
  <div>This is panel two.</div>
  <script>alert("You have entered panel two.")</script>
</template><a href="#panelOne">Show Panel One</a>  
<a href="#panelTwo">Show Panel Two</a><hcx-router runnable="true"></hcx-router>

Click on “Show Panel One” and “This is panel one” will show up between the router start and end tags. Clicking on “Show Panel Two” will not only replace the content it will run the script with the alert.

For the above and additional examples in this article see the code in action .

Routing can’t get much simpler than this. Just put an <hcx-router> on your page and any time the # changes, a document element with a matching id will be sought and its contents used to replace the empty space between the start and end tags of the router. And, if you tell the router to make the content runnable, any scripts will also be executed or loaded.

Of course, you can provide a target if you wish by making changes to add a targeted location and configure the router to use it:

<div>
  <div>Dashboard</div>
  <div id="dashboard"></div>
</div><hcx-router target=”#dashboard” runnable=”true”></hcx-router>

And, naturally you can also specify paths to select which router to use:

<a href="#dash1/panelOne">Show Panel One</a>  
<a href="#dash2/panelTwo">Show Panel Two</a>
<div>
  <div>Dashboard One</div>
  <div id="dashOne"></div>
</div><div>
  <div>Dashboard Two</div>
  <div id="dashTwo"></div>
</div><hcx-router path="dash1/:$to" target="#dashOne" runnable="true">
</hcx-router><hcx-router path="dash2/:$to" target="#dashTwo" runnable="true"></hcx-router>

In this case we used a special parameterized path containing :$to to specify the source of the content. The more conventional method used by Vue is also possible if a RegExp is used for the path:

<a href="#dash1/panelOne">Show Panel One</a>  
<a href="#dash2/panelTwo">Show Panel Two</a>
<div>
  <div>Dashboard One</div>
  <div id="dashOne"></div>
</div><div>
  <div>Dashboard Two</div>
  <div id="dashTwo"></div>
</div><hcx-router path="/dash1\/.*/" target="#dashOne" runnable="true" to="#panelOne">
</hcx-router><hcx-router path="/dash2\/.*/" target="#dashTwo" runnable="true" to="#panelTwo"></hcx-router>

Through the use of a less restrictive target CSS selector, it is also possible to target multiple output locations and use multiple routers at the same time!

<a href="#panelOne">Show Panel One</a>  
<a href="#panelTwo">Show Panel Two</a><div>
  <div>Dashboard One</div>
  <div></div>
</div><div>
  <div>Dashboard Two</div>
  <div></div>
</div><hcx-router target=".dashboard"></hcx-router>

Intrigued? Give us a clap and head over to GitHub .


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

创业无畏

创业无畏

彼得· 戴曼迪斯、史蒂芬· 科特勒 / 贾拥民 / 浙江人民出版社 / 2015-8 / 69.90元

 您是否有最大胆的商业梦想?您是否想把一个好主意快速转化为一家市值几百亿甚至几千亿元的公司?《创业无畏》不仅分享了成功创业家的真知灼见,更为我们绘制了一幅激情创业的行动路线图!  创业缺人手怎么办?如何解决钱的问题?把握指数型大众工具,互联网就是你车间,你的仓库。拥有好的创意,自然有人把钱“白白地送给你用”。当你大海捞针的时候,激励性大奖赛会让针自己跑到你的眼前来!  掌握指数级......一起来看看 《创业无畏》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

SHA 加密
SHA 加密

SHA 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器