#
Ajax
Ajax stands for asynchronous JavaScript and XML. It is collection of several web technologies including HTML, CSS, JSON, XML, and JavaScript. It is used for creating dynamic web pages in which small parts of web page change without reloading the page.
Here are 8,170 public repositories matching this topic...
Interactive Tables and Data Grids for JavaScript
react
javascript
jquery
json
data
list
widget
grid
table
ajax
sort
cdnjs
grid-layout
grid-system
tabulator
tabulator-table
-
Updated
May 26, 2022 - JavaScript
A tiny wrapper built around fetch with an intuitive syntax. 🍬
-
Updated
May 21, 2022 - JavaScript
debugger
php
profiler
nette
nette-framework
ajax
error-handling
php-errors
tracy
firelogger
dump-variables
-
Updated
May 23, 2022 - PHP
Open Source Social Network (OSSN) is a social networking software written in PHP. It allows you to make a social networking website and helps your members build social relationships, with people who share similar professional or personal interests. It is available in 17 international languages.
notifications
emoji
blog
chat
social
php
profile
photos
groups
opensource
facebook
graph
social-network
ajax
professional
free
multi-language
livechat
ossn
social-relationships
-
Updated
May 27, 2022 - PHP
Open
TypeScript Support
fieg
commented
Feb 16, 2020
Description
To be accessible to more web professionals IAS should also support TypeScript.
Relevant resources:
- http://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html
- https://github.com/DefinitelyTyped/DefinitelyTyped
I don't have much experience with TS yet. Any help is welcome!
一站式解决 WKWebView 支持离线包,Ajax/Fetch 请求,表单请求和 Cookie 同步的问题 (基于 Ajax Hook,Fetch Hook 和 Cookie Hook)
fetch
cookie
ajax
wkwebview
formdata
webviewjavascriptbridge
ajax-hook
jsbridge
jsapi
messagehandler
ifame
cookie-hook
wkwebview-reuse
jsapi-module-based
wkwebview-ajax-cookie
fetch-hook
ajax-body
-
Updated
Feb 16, 2022 - Objective-C
A tiny, Promise-based vanilla JS Ajax/HTTP plugin with great browser support.
-
Updated
Feb 12, 2022 - HTML
A middleware-style generic resource loader built with web games in mind.
-
Updated
Mar 8, 2020 - JavaScript
Open
Print CSS
15
mariohmol
commented
Dec 20, 2018
Make it printable via CSS, basically removing scrollings
Declarative AJAX requests and automatic network state management for single-page applications
react
redux
javascript
fetch
graphql
front-end
ajax-request
typescript
frontend
single-page-app
websocket
ajax
http-client
monorepo
websocket-client
axios
optimistic-ui
higher-order-reducers
optimistic-updates
-
Updated
May 16, 2022 - JavaScript
Fast and easy AJAX libraries for django applications. Contains ajax decorator, ajax middleware, shortcuts and more.
-
Updated
Apr 18, 2022 - Python
A Django plugin for creating AJAX driven forms in Bootstrap modal.
jquery
django
modal
ajax
bootstrap4
form
popup
bootstrap3
bootstrap-modal
popup-form-with-validation
-
Updated
Apr 22, 2022 - Python
is a lightweight rest client for node.js and the browser
-
Updated
Apr 20, 2022 - TypeScript
A jQuery plugin that simulates asynchronous file uploads.
-
Updated
Jun 3, 2020 - JavaScript
A tiny modern data fetching solution
-
Updated
Mar 26, 2022 - JavaScript
Content-Based Recommender System recommends movies similar to the movie user likes and analyses the sentiments on the reviews given by the user for that movie.
python
nlp
api
machine-learning
sentiment-analysis
ajax
recommendation-system
movie-recommendation
movie-recommendation-system
movie-recommender
-
Updated
May 17, 2022 - Jupyter Notebook
AJAX Live Search is a PHP search form that similar to Google Autocomplete feature displays the result as you type.
-
Updated
Feb 24, 2018 - JavaScript
HTML forms on performance-enhancing drugs
-
Updated
Jan 23, 2018 - JavaScript
Vue 2 Component to make Autocomplete element.
-
Updated
Feb 18, 2019 - Vue
axios实例应用及源码剖析 - xhr篇 (走心教程)
-
Updated
Mar 4, 2019 - JavaScript
Service for making AJAX requests in Ember applications
-
Updated
May 16, 2022 - JavaScript


PSR的RequestInterface没有规定实现exec方法,所以我设计组装一个http客户端无关的request的时候,我肯定不能绑定和客户端强相关的exec方法到Request上,因为每个客户端的异常类型、处理逻辑都不相同。
我设计一个composer组件,在组装请求部分,返回了个psr对象,本意是guzzle或者saber等支持PSR标准的HTTP客户端都可以按psr标准把这个对象代表的请求发送出去,现在Guzzle可以做到(
$guzzleClient->send($PSRrequest))而saber因为把PSR相关的处理逻辑绑定到他自定义的Request上,导致这样的设计没法实施。