Giter Site home page Giter Site logo

Comments (5)

rchipka avatar rchipka commented on September 24, 2024

If you mean just the context of the HTML <body>, then context.get('body').toString() should work.

If you mean get the entire HTML document as a string, one solution would be to call context.toString(), however it's not the original string and could cause issues because it doesn't always perfectly serialize HTML (see: libxmljs/libxmljs#213).

The reason Osmosis doesn't retain the original HTML document string/buffer is to keep memory usage to a minimum. In a future release an option could be added that will cause Osmosis to store the original string in the context object. For example, calling .get(url, opts, cb, { keepOriginal: true }) could make the context.original string available.

from node-osmosis.

zzyymaggie avatar zzyymaggie commented on September 24, 2024

@rc0x03 💝

from node-osmosis.

rchipka avatar rchipka commented on September 24, 2024

Support for this is coming in the next version. By setting the keep_data option to true, the original XML/HTML data is stored in context.response.data.

osmosis
.config('keep_data', true)
.get('www.craigslist.org/about/sites')
.then(function(context, data, next) {
  console.log(context.response.data);
})

from node-osmosis.

rchipka avatar rchipka commented on September 24, 2024

As of Osmosis 0.0.9 if keep_data is set to true then the response data will be stored in context.response.data, which is accessible from .then().

from node-osmosis.

pingzh avatar pingzh commented on September 24, 2024

Looks like it should be:

osmosis.config('keep_data', true)

osmosis
.get('www.craigslist.org/about/sites')
.then(function(context, data, next) {
  console.log(context.response.data);
})

the version that I am using is 1.1.4

from node-osmosis.

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.