美文网首页
网络请求数据写成plist//请求参数是要求传JSON数据

网络请求数据写成plist//请求参数是要求传JSON数据

作者: Tanyfi | 来源:发表于2016-10-20 09:44 被阅读83次

    NSString *p = @"/Users/mac/Desktop/九宫格图片处理";
    NSString *ps = [p stringByAppendingPathComponent:@"data.plist"];
    [parameters writeToFile:ps atomically:YES];

    ShopingCar *model = _shopingCarArr[row];
        NSMutableArray *mArr = [NSMutableArray array];
        mArr = @[@{@"goodsId":model.goodsId,
                   @"amount":[NSString stringWithFormat:@"%zd",model.quantity]}].mutableCopy;
        NSData *jsonData = [NSJSONSerialization dataWithJSONObject:mArr options:0 error:nil];
        NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    

    相关文章

      网友评论

          本文标题:网络请求数据写成plist//请求参数是要求传JSON数据

          本文链接:https://www.haomeiwen.com/subject/pfdfuttx.html