在kendo网格中添加kendo dropdownlinst时出现“验证错误”时。文本区域也会发生同样的情况。这是文件的代码段:
?
// Act
mockerGrid.confirmDialog.emit('yes');
fixture.detectChanges();
// Expect
expect(spyLoadData).toHaveBeenCalledTimes(1);
expect(spyBulkActionsFn).toHaveBeenCalledTimes(1);
expect(spyOnShowMessage).toHaveBeenCalledTimes(1);
expect(spyOnAfterDelete).toHaveBeenCalledTimes(1);
expect(spyBulkDelete).toHaveBeenCalledTimes(1);
expect(spyOnShowMessage).toHaveBeenCalledWith('Categories deleted', true);
expect(spyBulkDelete).toHaveBeenCalledWith(['Ab', 'Ac']);
expect(spyLoadData).toHaveBeenCalledWith(component.gridState);
expect(spyOnAfterDelete).toHaveBeenCalledWith({ msg: 'Categories deleted', flag: true });
expect(component.mySelection).toEqual([]);
});
});
npm安装
删除了node_modules并运行了npm install命令
在kendo网格中添加kendo dropdownlinst时出现“验证错误”时。文本区域也会发生同样的情况。这是文件的代码片段: 我收到另一个错误: 数据已保存,但出现如下错误:
editing指令的默认编辑服务仅在绑定到普通数组时才有效。请提供editService。
即使是google,也无法对此给出任何答案。