菜鸟教程小白 发表于 2022-12-13 16:52:16

javascript - 用于 HTML5/JS 移动应用程序的 MHT DocumentViewer


                                            <p><p>我正在使用 HTML5/JS(使用 DevExpress 的 DevExtreme-Package)开发一个移动应用程序(主要用于 iPhone/iOS)。现在,我需要在这个应用程序中显示 MHT 文件的内容。为此,我正在寻找可以显示 MHT 文件的文档查看器。 </p>

<p>如果控件不能只显示 MHT 文件,而用户可以编辑内容,则最佳选择。</p>

<p>谁能帮助我,我该怎么做?也许可以使用网络浏览器控件来查看它?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>MHT</code> 或 Mime HTML 是一种存档格式...所以您应该能够转换为 HTML,然后再转换回 <code>.mht</code>...</p>

<p>您应该可以使用 <a href="https://github.com/zsxsoft/mhtml-parser" rel="noreferrer noopener nofollow">https://github.com/zsxsoft/mhtml-parser</a>解析 <code>mht</code>...</p>

<pre><code>let parser = require(&#39;mhtml-parser&#39;);
parser.loadFile(__dirname + &#34;/simple/simple.mht&#34;, {
charset: &#34;gbk&#34;
}, function(err, data) {
if (err) throw err;
    console.log(data);
});
</code></pre>

<p>然后你应该能够修改文件内容然后你需要将它转换回 <code>mht</code> 我不确定上面提到的 repo 是否可以做到,你仍然应该能够进行逆向工程并为自己创建 html 到 mht 转换器,当您考虑使其开源时,以便其他人可以使用它... ;-)</p>

<p>我没有亲自使用过这个,但它有六颗星......并且似乎是这项工作最受欢迎的 repo ......</p>

<p>或者...
您可以在 github 上搜索 mht 以找到更多适合该工作的候选人 ;-)</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 用于 HTML5/JS 移动应用程序的 MHT DocumentViewer,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37600313/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37600313/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 用于 HTML5/JS 移动应用程序的 MHT DocumentViewer