自动链接网页视图 Titanium
最近我一直在从事一个项目,该项目以 HTML 文档的形式从网站获取响应。我正在尝试做两件事:
解析 HTML 以显示其应该的方式(可在 webView 中执行)。
2.自动链接所有已解析的文本。
有没有办法在同一区域完成这两件事?到目前为止我所做的只是其中之一,我有点困惑 非常感谢,祝你有美好的一天!
recently I've been working on a project that gets a response from a a website as an HTML document. I'm trying to do 2 things:
parse the HTML to show the way its supposed to (doable within a webView).
2.auto link all the parsed text.
Is there a way to do both those things in the same area? all I managed to do up to now is one of the 2 and I'm kinda puzzled
thanks a bunch and have a great day!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我找到了答案。
Titanium 中的标签有 2 个不同的属性。
第一个是常规文本,它是属性“text”。第二个是 HTML 解析器,它获取 HTML 代码作为输入并将其呈现为可查看的文本格式。它被称为“html”,最终代码是:
var label = Ti.UI.createLabel({
html:源HTML,
...
});
Well, I found the answer.
there are 2 different attributes for a label in Titanium.
the first one is for regular text, and it is the attribute "text". the second one is an HTML parser that get as input HTML code and renders it into a viewable text format. it's called "html" the final code was:
var label = Ti.UI.createLabel({
html:sourceHTML,
...
});