Book Image

RESS Essentials

Book Image

RESS Essentials

Overview of this book

RESS is a new methodology in the world of web design and development. It attempts to solve the problems that accompany the RWD (responsive web design) approach to web design. RESS is still in its infancy, but it is growing at an exponential rate. RESS Essentials shows you how to make server-side applications smarter and more aware of a visitor's environment limitations (device, screen size, and browser). This allows you to create faster and more reliable websites. Through this book, you will build a solid base of knowledge on RESS-related technologies, while the step-by-step tutorials will help you to create your own RESS system. This book is an introduction to RESS alchemy and gives you an incentive to build your own RESS lab. It will give you a broad overview of the multiple techniques used to code responsive websites in responsible ways. Beginning with an overview of RWD, you will learn the steps involved in setting up RWD for client-side development. You will then learn how to scale images using client- and server-side technology. By the end of this book, you will have learned about the implementation of RESS application patterns, browser feature detection, and various RESS architectures. RESS Essentials will also teach you how to use jQuery with some RWD design patterns and how to employ REST API for RWD pages.
Table of Contents (15 chapters)
RESS Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Implementing routes


To use the routes defined in setRoutes(), we call them using the jQuery .ajax() method as in the following code:

function findAll() {
  $.ajax({
    type: 'GET',
    url: rootURL,
    dataType: "json", // data type of response
    success: renderMenu
  });
}

The preceding code is pretty much self-explanatory. The function findAll() called from the $(document).ready function loads the list of all the photos by sending the GET request to the /photos route and renders them using the renderMenu function. The PHP function getPhotoList() assigned to this route, reads all photos from the database as an array of stdClass objects, encodes them to JSON format, and sends them back using the following code:

public function getPhotoList()
{
  $sql = "select * FROM photos ORDER BY location";
  try {
    $stmt = self::$dbh->query($sql);
    $photos = $stmt->fetchAll(PDO::FETCH_OBJ);
    //var_dump($photos);
    echo '{"photo": ' . json_encode($photos) . '}'; //here we send JSON encoded...