Skip to content

themost-framework/jquery

Repository files navigation

@themost/jquery

MOST Web Framework client for jQuery based on @themost/client

MOST Web Framework Logo

Usage

npm i @themost/jquery

Initialize data context:

$(document).dataContext({
    base: '/api/'
});

and use it to get data:

$(document).dataContext('getContext').model('Orders').getItems().then(function(items) {
    
});