Sencha CMD-生成错误:当前不支持混合模式x-compile和微加载标记

new9mtju  于 2022-09-26  发布在  其他
关注(0)|答案(1)|浏览(148)

我正在尝试构建我的ExtJS 4.2应用程序,我正在为OSX使用Sencha Architect 3.1和Sencha CMD 5.1.1.39。
我在跟踪this tutorial,了解如何从终端进行构建,正如所料,我遇到了以下错误:
com.sencha.exceptions.ExBuild: Mixed-Mode x-compile and microload markup is currently unsupported
在搜索时,我发现this thread from Sencha正在讨论如何绕过这个错误。
我接下来要做的是从app.json文件中删除行,该文件最初看起来是这样的:

{
   "name": "my_app_name",
   "requires": [],
   "id": "eceafdc4-45e6-4dc1-b51a-75af9b7887a6",
   "resources": [
      "resources/css/rowCSS.css",
      "resources/css/receiptGrid.css",
      "resources/css/propertyGrid.css",
      "resources/css/msgBox.css",
      "resources/css/popWindow.css",
      "resources/css/passwordPrompt.css",
      "resources/css/textStyles.css"
   ],
   "theme": "ext-theme-classic-3ea6533d-fc56-477c-9143-5085a431c7f3",
   "js": [
      {
         "path": "app.js",
         "bundle": true
      }
   ],
   "css": [
      {
         "path": "bootstrap.css",
         "bootstrap": true
      }
   ]
}

并按照上面教程中的建议删除了“css”和“resources”部分。然而,我仍然有同样的错误。
我的index.html文件如下所示:

<!DOCTYPE HTML>

<html>
<head>
    <meta charset="UTF-8">
    <title>my_app_name</title>
    <!-- <x-compile> -->
        <!-- <x-bootstrap> -->
            <script src="ext/ext-dev.js"></script>
            <script src="bootstrap.js"></script>
        <!-- </x-bootstrap> -->
        <script src="app/override/form/Panel.js"></script>
        <script type="text/javascript" src="app.js"></script>
    <!-- </x-compile> -->
                <link rel="stylesheet" href="bootstrap.css">

    <link rel="stylesheet" href="resources/css/rowCSS.css" id="child-row">
    <link rel="stylesheet" href="resources/css/receiptGrid.css" id="receiptGrid">
    <link rel="stylesheet" href="resources/css/propertyGrid.css" id="propertyGrid">
    <link rel="stylesheet" href="resources/css/msgBox.css" id="msgBox">
    <link rel="stylesheet" href="resources/css/popWindow.css" id="popWindow">
    <link rel="stylesheet" href="resources/css/passwordPrompt.css" id="passwordPrompt">
    <link rel="stylesheet" href="resources/css/textStyles.css" id="textStyles">
</head>
<body>
</body>
</html>

在阅读Sencha网站上的帖子时,我似乎不得不选择app.jsonindex.html文件。所以我试着删除了“资源”和“css”,先删除内容,然后删除整个内容,并试图构建它,但没有成功。我仍然有错误。
我真的目瞪口呆,我正在尝试构建和发布我的web应用程序,这样用户就不必加载大量ExtJS脚本,其中大部分脚本都是无用的。
我也很困惑,因为index.htmlapp.json(以及app.jsapp.json.meta)似乎都是由Sencha Architect 3.1自动生成的。IDE生成的文件在以后的构建和发布过程中似乎会发生冲突,这是没有意义的。
此外,Sencha线程已经8年了。除了这里提供的提示之外,我不知道该怎么做。接下来我可以试试什么?

mrzz3bfm

mrzz3bfm1#

我通过降级到Sencha CMD 5.1.0.26(解决了5.1.1.39中的另一个问题,参见[1])并完全删除js和e1d1e部件来解决这个问题:

{
   ...
   "theme": "ext-theme-classic-3ea6533d-fc56-477c-9143-5085a431c7f3"
}

是的,令人遗憾的是,一个如此昂贵的产品竟然维持得如此糟糕。
[1] https://www.sencha.com/forum/showthread.php?297673-Bug-Incorrect-encoding-on-concatenated-JS-file-in-Sencha-Cmd-5.1.1.39&p=1087279&viewfull=1#post1087279

相关问题