如何从iOS中的url请求中提取数据

Dav*_*vid 0 objective-c barcode ios

我正在编写一个扫描条形码的应用程序,然后查询Outpan.com以获取条形码编号的信息.如何从网址请求中提取信息?下面是扫描成功后的输出示例.我怎么能将名称存储到NSString中?

这是我用来访问信息的代码.

- (void) sendRequest {


NSString *myString = @"https://api.outpan.com/v2/products/";

NSString *secondhalf= _barcode;


NSString *thirdHalf = @"?apikey=935b8b8e102f93220b751a4e1c66126a";

NSString *test = [myString stringByAppendingString:secondhalf];
NSString *text = [test stringByAppendingString:thirdHalf];

if (![text isEqualToString:@""]) {

    NSURL *url = [NSURL URLWithString:text];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    [self.webView loadRequest:request];

}

}
Run Code Online (Sandbox Code Playgroud)

通常我尝试使用类似的东西

   NSString* value = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('myId').value"];
Run Code Online (Sandbox Code Playgroud)

如果HTML看起来像这样

<html>
  <body>
      <input id="myId" type="text" value="TextValue"/>
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

但是HTML就是这样的

<html><head></head><body><pre style="word-wrap: break-word; white-space: pre-    wrap;">{
    "gtin": "0014633156720",
    "outpan_url": "https:\/\/www.outpan.com\/view_product.php?    barcode=0014633156720",
    "name": "Battlefield: Bad Company 2",
    "attributes": {
        "Distribution Media\/Method": "Blu-ray Disc",
        "ESRB Rating": "RP (Rating Pending)",
        "Manufacturer": "Electronic Arts",
        "Manufacturer Part Number": "15672",
        "Platform": "PlayStation 3",
        "Platform Supported": "PlayStation 3",
        "Software Main Type": "Game",
        "Software Sub Type": "First Person Shooter"
    },
    "images": [],
    "videos": [],
    "categories": []
}</pre></body></html>
Run Code Online (Sandbox Code Playgroud)

的WebView

Pat*_*ley 5

问题是您正在尝试使用UIWebView发出api请求.api可能会将您的Accepts标头视为text/html,因此会在网页中向您发送api响应,而不仅仅是原始JSON.请尝试使用NSURLSession进行请求.

- (void)sendRequest:(id)sender {

    NSURLSessionConfiguration *sessionConfig = [NSURLSessionConfiguration defaultSessionConfiguration];

    NSURLSession *session = [NSURLSession sessionWithConfiguration:sessionConfig delegate:nil delegateQueue:nil];

    NSString *urlString = [NSString stringWithFormat: @"https://api.outpan.com/v2/products/%@", _barcode];

    NSURL *url = [NSURL URLWithString: urlString];

    NSURLComponents *components = [[NSURLComponents alloc] initWithURL: url resolvingAgainstBaseURL: NO];

    NSURLQueryItem *query = [[NSURLQueryItem alloc] initWithName: @"apikey" value: @"935b8b8e102f93220b751a4e1c66126a"];

    components.queryItems = @[query];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL: components.URL];

    request.HTTPMethod = @"GET";

    NSURLSessionDataTask* task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {

        if (error == nil) {

            NSDictionary *responseBody = [NSJSONSerialization JSONObjectWithData: data options: 0 error: nil];

            NSLog(@"got response: %@", responseBody);

        } else {
            // Failure
            NSLog(@"URL Session Task Failed: %@", [error localizedDescription]);
        }
    }];

    [task resume];
}
Run Code Online (Sandbox Code Playgroud)

未经测试,因为我没有真正的条形码,但您应该在responseBody字典中看到您要求的JSON .