Executing curl from Javascript?

后端 未结 3 1472
庸人自扰
庸人自扰 2020-12-29 06:03

Is there a way to execute curl from Javascript? Thanks.

相关标签:
3条回答
  • 2020-12-29 06:18

    Nope. You'll need to look at using Ajax/XMLHttpRequest instead. http://en.wikipedia.org/wiki/Ajax_%28programming%29

    0 讨论(0)
  • It depends of which environment is running javascript, if you mean from the browser, nop, it's not possible.

    But if it's from Node.js, yes it's possible using native modules. Take a look at: https://github.com/JCMais/node-libcurl

    Code example:

    var Curl = require( 'node-libcurl' ).Curl;
    
    var curl = new Curl();
    
    curl.setOpt( 'URL', 'http://www.google.com' );
    curl.setOpt( 'FOLLOWLOCATION', true );
    
    curl.on( 'end', function( statusCode, body, headers ) {
    
        console.info( statusCode );
        console.info( '---' );
        console.info( body.length );
        console.info( '---' );
        console.info( this.getInfo( 'TOTAL_TIME' ) );
    
        this.close();
    });
    
    curl.on( 'error', function ( err, errCode ) {
    
        //do something
    
        this.close();
    });
    
    curl.perform();
    

    Disclaimer: I'm the author, it's a modified version of another module: https://github.com/jiangmiao/node-curl.

    0 讨论(0)
  • 2020-12-29 06:29

    It depends on what curl you are talking about. You are probably asking about cURL, but if you are asking about the Curl programming language, then the answer is yes. You can invoke Curl methods on an object in an embedded Curl subapplet using the applet_invoke method. There are examples of this in the subapplet examples that are included in the Curl Developer's Guide.

    0 讨论(0)
提交回复
热议问题