Why do we use request.xhr? in rails
Answers were Sorted based on User's Feedback
Answer / surekha matte
request.xhr? indicates the controller has
received an ajax request. It returns true or false
| Is This Answer Correct ? | 71 Yes | 8 No |
Answer / moin haidar
Conventional web application transmit information to and
from the sever using synchronous requests. This means you
fill out a form, hit submit, and get directed to a new page
with new information from the server.
When you interact with an Ajax-powered web page, it loads an
Ajax engine in the background. In response to an event web
application passes asynchronous request (XMLHttpRequest or
xhr). In fact it is javaScript object/method that performs
asynchronous interaction with the server, JavaScript object
that performs asynchronous interaction with the server and
behind the scene fetches data. and behind the scene fetches
data.
We do request.xhr? only to check the request type, either
its AJAX request or others(post, get).
| Is This Answer Correct ? | 43 Yes | 11 No |
how you can list all routes for an application?
Please explain what are the positive aspects of rails?
Mention the types of variables available in Ruby Class?
what is the difference between Dynamic and Static Scaffolding?
How you run your Rails Application without creating database ?
Is it possible to build a 50% bespoke e-commerce platform hence having the ability to customize everything down the line? For example would it make sense to start coding an application on the Ruby on Rails framework but where the most complex/time consuming code pieces (e.g. shopping cart, etc) can be initially bolted on (hence diminishing development time and cost) having the ability to change them completely further down the line?
explain request/response cycle?
What is rails script? Name some of them?
How are blocks created?
What is Rails?
Mention all the naming conventions in ruby on rails.
What are models in rails?