我刚开始学习如何使用angularjs创建表单,并在将其部署到camunda时面临一些问题。我正在尝试使用标签创建一个表单。并且包括我使用ng-include:
的aditional html页面<div class="tab-content">
<div ng-switch = "main.active.tab">
<div ng-switch-when = 'persons'
ng-include = '"tabs/persons.html"'></div>
<div ng-switch-when = 'history'
ng-include = '"tabs/history.html"'></div>
<div ng-switch-when = 'deals'
ng-include = '"tabs/deals.html"'></div>
<div ng-switch-when = 'products'
ng-include = '"tabs/products.html"'></div>
</div>
</div>
但是当我将此表单部署到camunda时,会出现错误:&#34; 404 Not Found - http://localhost:8080/camunda/app/tasklist/default/tabs/persons.html" 。这就是为什么我想知道如何编写目录来从我的应用程序的目录中创建comunda上传html页面:&#34; myapp / forms / tabs / persons.html&#34;?
提前致谢