标签: angularjs
我有一个angularJS应用程序,我需要(对于服务提供商)在我的一个模板中包含这段代码:
<script type="text/javascript"> window.ptag_params = { zone: "listing", customerId: {{user.uuid}}, siteType: "d", }; </script>
我需要动态地将user.uuid传递给该变量,这是最好/最干净的方法吗?
感谢
答案 0 :(得分:1)
你可以实现一个directive,其作用是在给定特定uuid的情况下制作html片段。 你可以找到AngularJS的指令教程here。
directive