我想在前端主题中重复使用momentjs(mockup-patterns-moment),但它不起作用
我已经尝试过:
require([
'example.theme',
'mockup-patterns-moment'
]);
在Ressource-registry中,或直接在主题.html中没有任何对我有用...
答案 0 :(得分:1)
这个模式已经是Plone默认包的一部分,所以你没有任何东西要声明使用它,只需使用正确的标记:
<span class="pat-moment"
data-pat-moment="format:calendar">2016-06-16</span>
答案 1 :(得分:0)
在你的主题html文件中,你应该可以做这样的事情
<script>
require([
'mockup-patterns-moment'
]);
</script>
然后就像@ebrehault建议
那样<span class="pat-moment"
data-pat-moment="format:calendar">2016-06-16</span>
请在此处查看答案:https://community.plone.org/t/how-to-make-pat-moment-available-to-anonymous-users/1577