Giter Club home page Giter Club logo

dynamic-json's Introduction

dynamic-json

Currently only works in ccloader3

A mod for generating a file through javascript. NOTE: A resource overriding and patching is ignored.

Usage

DynamicJson.forExactUrl

DynamicJson.forExactUrl('random/number.json', function() {
    return { number: Math.floor(Math.random() * 50) + 1};
});
$.ajax({
    dataType: "json", 
    url: 'random/number.json',
    success: function({number}) {
        console.log('You got', number);
    }
})

This will print to the console You got with a random number starting from 1 to 50.

Why would you need this? No idea! But you can do it.

DynamicJson.forRegExpUrl

DynamicJson.forRegExpUrl(/random\/number\/([0-9]+)\/([0-9]+).json/, function(start, end) {
    start = parseInt(start);
    end = parseInt(end);
    return Math.floor((Math.random() * (end + 1)) + start);
})
$.ajax({
    dataType: "json",
    url: 'random/number/0/1.json',
    success: function(data) {
       console.log(data);
    }
})

This will print to the console either 0 or 1.

dynamic-json's People

Contributors

ac2pic avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

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.