是否可以在Neos后端为每个页面设置一个复选框,以显示/隐藏页面中的一些HTML和JavaScript代码(对所有子页面更好)?
答案 0 :(得分:1)
您可以为stages:
- build
- cleanup_build
- test
- deploy
- cleanup
build_job:
stage: build
script:
- make build
cleanup_build_job:
stage: cleanup_build
script:
- cleanup build when failed
when: on_failure
test_job:
stage: test
script:
- make test
deploy_job:
stage: deploy
script:
- make deploy
when: manual
cleanup_job:
stage: cleanup
script:
- cleanup after jobs
when: always
添加新属性或创建新类型,然后将其作为Neos.Neos:Document
附加到您想要的每种网页类型。
superType
的示例设置:
Neos.Neos:Document
答案 1 :(得分:0)
如果要检查当前页面或父页面是否具有选定值,可以使用Fusion执行此操作:
nodeOrParentNodeIsChecked = ${q(node).closest('[instanceof Neos.Neos:Document][yourVariableName]').property('yourVariableName')}
可以免费询问https://discuss.neos.io,因为这是我们的官方论坛。您可以在此处找到更多信息:https://www.neos.io/docs-and-support/support.html