我在此代码中尝试显示值{{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>