Sencha 警报消息框中仅显示标题但未显示消息

Only Title shows but message not shown in Sencha alert message box

我是 Sencha 的新手, 我尝试在我的 Sencha 应用程序中使用消息框获取 offline/online 消息,但在消息框中只显示标题,它不在消息框中显示任何消息。 代码:

 Ext.Msg.show({
            title: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> You are Offline!!!',
            msg: 'Do you want to Save the changes? ',
            multiline: true,
            width: 300
        });

看起来像:

请帮帮我

您没有使用正确的 属性。如果你比较 the docs,你会发现他们使用 message 属性,而不是 msg。另外,请注意示例中的 multiLine 有一个大写字母 L - 而你的没有。

在代码中做出正确的属性,您将得到想要的结果。

您的代码应该是

Ext.Msg.show({
        title: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> You are Offline!!!',
        message: 'Do you want to Save the changes? ', // message
        multiLine: true, // Use camelCase
        width: 300
    });

在fiddler中可以看到Fidller