你是如何使用胡子js和链接

时间:2017-03-25 14:16:48

标签: javascript json mustache

我在此代码中尝试显示值{{app}}{{vendor}}。 你有想法吗? 为此,没关系

  <td>{{title}}</td>
  <td>{{vendor}}</td>

但是在这个元素内部确实没有工作

<?php echo '<a href="' . OSCOM::link('index.php', 'index.php?A&{{app}}\{{vendor}}') . '">' . HTML::image($OSCOM_Template->getImageDirectory() . '/icons/edit.gif', OSCOM::getDef('image_edit')) . '</a>'; ?>

Tk的

json示例:

{
 "title":   "BestSelling App",
 "app": "BestSelling",
 "vendor":"BestSelling"
}

数据:

 <script id="appInstalledTableEntry" type="x-tmpl-mustache">
    <tr>
      <td>{{title}}</td>
      <td>{{vendor}}</td>
      <td class="text-md-right">{{version}}</td>
      <td class="text-md-right action"><?php echo '<a href="' . OSCOM::link('index.php', 'index.php?A&{{app}}\{{vendor}}') . '">' . HTML::image($OSCOM_Template->getImageDirectory() . '/icons/edit.gif', OSCOM::getDef('image_edit')) . '</a>'; ?></td>
    </tr>
  </script>

0 个答案:

没有答案