English 中文(简体)
我该为AJAX网络应用元素 建造一个REST Api吗?
原标题:Should I build a REST api for AJAX web application elements?

我看到< a href=> https://stackoverflow.com/ questions/127228/should-a-web-app-use-its-own-public-api-to-display-data>> 问题,它提出了关于建立一个RESTful API的一些问题。对于我的应用程序,我想做一些类似Twitter或Facebook新闻的东西,用AJAX在用户使用 jQuery 滚动的页面中拉动额外的种子信息。 我不知道设计这个工具的最佳方法是什么。 创建 REST Api 是否太巧妙了, 将这个功能暴露在自己的网络应用程序中我只打算使用的功能上? 我需要考虑哪些交换?

注:该项目使用PHP/CodeIgniter/jQuery软件。

问题回答

考虑一下PHP和Javascript 双方最畅所欲言的语言,还有JSON。所以,除非你想要完整的休息服务,为什么比JSON更复杂?

Restful其实是用来支持广泛的服务。 您只需要服务。 不要让服务变得更复杂 。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签