我有一个如下所示的渲染模板
这是我的component.html
<customcomponent templateID="#templatesample"></customcomponent>
<script id="templatesample" type="text/x-jsrender">
<div class="cont-bg">
<div class="listrightdiv">
<span class="templatetext">{{>Name}}</span> <span class="designationstyle">{{>Designation}}</span>
<div class="aboutstyle">
{{>About}}
</div>
</div>
</div>
</script>
在我的自定义组件中,我必须传递脚本模板的id 但是我无法通过抛出错误消息的“#”传递值
错误:语法错误,无法识别的表达式:## templatesample
在搜索一般解决方案时,即使使用锚标记,也存在分配href
的问题https://github.com/angular-ui/ui-router/issues/1423
Uncaught Error: Syntax error, unrecognized expression: #/ angularjs and jquery
我正在将我的应用程序从角度2移动到离子2,我在使用模板时遇到错误。
离子使用“#”标签是否有任何限制?
有什么建议吗?