CasperJs loads json data from a local file

前端 未结 3 1979
忘了有多久
忘了有多久 2021-02-14 00:23

Is there any convenient way to load a local JSON file into a variable with CasperJs?

I saw someone suggest to use

$.getJSON(filename, function() ... 
         


        
3条回答
  •  清酒与你
    2021-02-14 00:59

    I have the following working on CasperJS 1.1-beta1 and PhantomJS 1.9.1

    test.json

    {
        "test": "hello"
    }
    

    test.js

    var json = require('test.json');
    require('utils').dump(json);
    casper.echo(json.test); // "hello"
    

提交回复
热议问题