Angular 应用程序在 PROD 上抛出错误,但在 dev 上工作完美



我有这个表并且在调试中工作得很好,但是当我deply抛出此错误"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>

由于报告的问题不可重现,因此我准备了一个包含提供的代码片段的示例。您可以从此处获取示例。

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

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

相关内容

  • 没有找到相关文章

最新更新