GithubHelp home page GithubHelp logo

Comments (10)

coderyi avatar coderyi commented on May 10, 2024

好的,我会尽快支持

from networkeye.

coderyi avatar coderyi commented on May 10, 2024

已经修改好了,1.0.9

from networkeye.

Wbqqqq avatar Wbqqqq commented on May 10, 2024

还是报错,UISearchDisplayController is no longer supported when linking against this version of iOS. Please migrate your application to UISearchController ,我看到pod1.0.9里还是有UISearchDisplayController

from networkeye.

Wbqqqq avatar Wbqqqq commented on May 10, 2024

我看你仓库的代码改了 ,pod的代码还是老的。

from networkeye.

coderyi avatar coderyi commented on May 10, 2024

@Wbqqqq 现在可以了1.1.0

from networkeye.

iimuy avatar iimuy commented on May 10, 2024

@coderyi 目前库抓不到post请求,建议可以增加如下代码
post请求方式变了,可以自己实现这部分
在NEHTTPModel类的setNe_request:方法中实现
if ([ne_request HTTPBody].length>512) {
self.requestHTTPBody=@"requestHTTPBody too long";
}else if (![ne_request HTTPBody]){

   if ([ne_request.HTTPMethod isEqualToString:@"POST"]) {
          if (!ne_request.HTTPBody) {
             uint8_t rd[1024] = {0};
              NSInputStream *stream = ne_request.HTTPBodyStream;
               NSMutableData *data = [[NSMutableData alloc] init];
             [stream open];
              while ([stream hasBytesAvailable]) {
                  NSInteger len = [stream read:rd maxLength:1024];
                if (len > 0 && stream.streamError == nil) {
                    [data appendBytes:(void *)rd length:len];
                  }
              }
              self.requestHTTPBody=[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
              [stream close];
        }
    }

}

from networkeye.

coderyi avatar coderyi commented on May 10, 2024

如果您有时间的话可以直接提交 Merge Request

from networkeye.

Wbqqqq avatar Wbqqqq commented on May 10, 2024

@Code501 good

from networkeye.

iimuy avatar iimuy commented on May 10, 2024

@coderyi 好的,晚上我搞下。

from networkeye.

coderyi avatar coderyi commented on May 10, 2024

非常谢谢

from networkeye.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.