我目前正在使用AFNetworking从Wordpress API使用JSON Web服务。
这是我正在使用的格式:
[
{
id: 4,
title: "post1",
permalink: “http://www.example.com/test-post”,
content: “blah blah blah blah blah <iframe src="//player.vimeo.com/video/1010101?title=0&byline=0&portrait=0&color=ff5546" height="638" width="850" allowfullscreen="" frameborder="0"></iframe> more text blah blah <a href="http://example.com/wp-content/uploads/2014/01/testpic.png"><img class="aligncenter size-full wp-image-1180" alt="testpic" src="http://example.co/wp-content/uploads/2014/01/testpic.png" width="850" height="611" /></a>",
excerpt: " blah blah blah",
date: "2014-02-24 23:32:19",
author: "admin",
categories:
[
"Uncategorized"
],
tags: [ ]
},
{
id: 1,
title: "Hello world!",
permalink: “http://www.example.com/test-post”,
content: "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!",
excerpt: "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!",
date: "2014-02-24 22:48:12",
author: "admin",
categories:
[
"Uncategorized"
],
tags: [ ]
}
]
我正在消费它如下:
-(void)makeWordpressRequest
{
NSURL *URL = [NSURL URLWithString:@"http://example.com/feed/json"];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc]
initWithRequest:request];
operation.responseSerializer = [AFJSONResponseSerializer serializer];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
self.wordpress = responseObject;
[self.tableView reloadData];
NSLog(@"%@", responseObject);
} failure:nil];
[operation start];
}
现在这是我的问题..我可以成功解析并显示JSON的“内容”字符串,但我还没想出如何删除视频的“iframe”和从该字符串中删除“a href”显示它。
有没有直接嵌入它们?或者我可以通过编程方式从JSON字符串中拆分它们然后以另一种方式嵌入它们吗?我目前正在使用UITextView来显示@“内容”。
编辑:
不仅可以删除HTML,还可以在可能的情况下正确嵌入HTML。
感谢您的帮助
答案 0 :(得分:2)
您的API不应该在JSON内部提供XML / HTML。*
理想情况下,您应该使用API来解决此问题,因为在JSON中解析XML / HTML会为bug带来新的可能性。例如,可能存在字符编码问题,转义问题等。这是糟糕的API设计。看起来你正在使用Wordpress,所以你可能想在这里发布一个单独的问题,关于如何修改Wordpress JSON API以获取你的应用程序所需的URL。
如果你真的无法修改API,你必须从JSON中取出字符串,然后通过NSScanner或NSXMLParser运行它来尝试挑选你想要的部分。我会从NSScanner开始,因为它更简单,我猜你的API不能保证你会获得有效的XML。 Here's some sample code to get your started
最后,稍微偏离主题:您可能希望使用AFNetworking类AFRequestOperationManager而不是构建操作并立即启动它们。它可以使您的代码更简单,更高效。现在不紧急,只是想鼓励你去看看它。
*(可能;此规则有例外。如果你应该在UIWebView中显示内容,也许可以接受。)
答案 1 :(得分:-1)
//下载和#import“RegexKitLite.h”myregex是RegexKitLite的参考。
NSString *HTMLTags = @"<[^>]*>"; //regex to remove any html tag
NSString *htmlString = @"<html>bla bla bla bla bla bla bla bla</html>";
NSString *stringWithoutHTML = [hstmString stringByReplacingOccurrencesOfRegex:myregex withString:@""];
希望它对你有所帮助......