在保存数据时,我在Composite C1控制台中遇到问题 - 页面,数据类型,媒体,任何有表单的内容。
编辑并保存数据后,控制台会重新加载表单,但所有字段都为空。加载微调器一直运行,直到用户按下escape以强制它停止。看起来某种绑定并没有按预期工作,但JavaScript控制台中没有错误。然而,C1服务器日志显示以下三个条目,来自UiControlContainer
:
Posibility of data corruption detected. Unexpected lazy bound state information from client. Expected 'true' or 'false', got '' for post back field 'FlowUI$Document$DocumentBody$TabPanels_lazybindingactivatedPreview'. Will try to bind on child controls.
Posibility of data corruption detected. Unexpected lazy bound state information from client. Expected 'true' or 'false', got '' for post back field 'FlowUI$Document$DocumentBody$TabPanels_lazybindingactivatedMetadata'. Will try to bind on child controls.
Posibility of data corruption detected. Unexpected lazy bound state information from client. Expected 'true' or 'false', got '' for post back field 'FlowUI$Document$DocumentBody$TabPanels_lazybindingactivatedSettings'. Will try to bind on child controls.
检查Chrome检查器中FlowUi.aspx
的实际HTTP请求,表明这三个字段确实是作为POST正文的一部分发送的:
FlowUI$Document$DocumentBody$TabPanels_lazybindingactivatedSettings:false
FlowUI$Document$DocumentBody$TabPanels_lazybindingactivatedMetadata:false
FlowUI$Document$DocumentBody$TabPanels_lazybindingactivatedPreview:false
是否有其他人看到这些错误或有相同的行为?
Web应用程序项目中没有其他人没有这个问题吗?
控制台在C1 4.1.5058.34326上运行,应用程序是Visual Studio中的Web应用程序项目。