嵌入 bugzilla 报告
我正在尝试找到一种将 bugzilla 的表格报告嵌入到另一个 HTML 文档中的方法。有谁知道如何做到这一点?所有嵌入都必须发生在客户端。我无法访问后端 Web 服务器来实现内容的解析/内联。我想,我可以使用 iframe,但我还没有找到一种方法来告诉 bugzilla 不要发出其标准页眉和页脚。
有人有在客户端将 bugzilla 报告嵌入到 HTML 文档中的经验吗?
I am trying to find a way to embed bugzilla's tabular reports in another HTML document. Does anyone know a way to do this? All embedding must happen client-side. I don't have access to backend web server to implement parsing/inlining of contenting. I figure, I could use an iframe, but i haven't found a way to tell bugzilla not to emit its standard header and footer.
Does anyone have experience embedding bugzilla reports into an HTML document on the client side?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您希望错误列表请求中包含
&format=simple
参数,例如:https://bugzilla.mozilla.org/buglist.cgi?bug_id=1000,1001,1002&format=simple
输入这样的 URL(自然是指向您的 Bugzilla) ) 在
格尔夫
You want the
&format=simple
parameter on your buglist request, e.g.:https://bugzilla.mozilla.org/buglist.cgi?bug_id=1000,1001,1002&format=simple
Put a URL like that (to your Bugzilla, naturally) in the
src
attribute of an <iframe>.Gerv
一点 javascript 来请求 html 和足够的解析来找到正确的代码片段可能是您唯一的选择。
http://ejohn.org/blog/pure-javascript-html-parser/ 可能是一个不错的解析选项。
A little javascript to request the html and enough parsing to find the right snippet might be your only option.
http://ejohn.org/blog/pure-javascript-html-parser/ might be a good parsing option.