角度的应用程序会在产品上抛出错误,但在开发人员上会完美

时间:2019-03-23 23:17:37

标签: angular syncfusion

我有此表,并且在调试中工作正常,但是当我认真执行时会抛出此错误“ zs.a.createInput不是函数”

<table class="table">
    <tr>
        <th>Dimension</th>
        <th>Dependencia por defecto</th>
        <th>Observaciones</th>
        <th>Dependencia Efectiva</th>
    </tr>
    <tr *ngFor="let row of dependenciaDimensiones">
        <td>{{row.dimension.nombre}}</td>
        <td>{{row.dimension.tipoDependencia.nombre}}</td>
        <td>{{row.dimension.observacion}}</td>
        <td><ejs-numerictextbox  format='n2' [(value)]='row.dependenciaEfectiva'></ejs-numerictextbox></td>
    </tr>
</table>

1 个答案:

答案 0 :(得分:1)

由于所报告的问题不可复制,因此我准备了带有提供的代码段的示例。您可以从here获取示例。

还要确保node_modules已正确安装在您的应用程序中。建议从应用程序中删除node_modules,然后使用npm cache clean --force命令清除缓存,然后使用npm install命令再次安装node_modules。

如果问题仍然存在,请使用产品版本和可重现该问题的示例进行还原。