2

RESTメソッドについて理解しようとしています。REST テクノロジに関する Google カンファレンスのビデオをいくつか見ましたが、データベースとの接続のアプリの実装について見ました。したがって、私のコードが REST としてカウントされるかどうかを知りたいです。

PHP コード:

<?php
mysql_connect("localhost","*****","********");
mysql_select_db("********");
$cname = mysql_real_escape_string($_REQUEST['cname']);
$q=mysql_query("SELECT mdl_course_sections.summary FROM mdl_course, mdl_course_sections WHERE mdl_course.id = mdl_course_sections.course AND mdl_course.fullname = '$cname' AND mdl_course_sections.section > 0");
while($e=mysql_fetch_assoc($q))
    $output[]=$e;
print(json_encode($output));
mysql_close();
?>

ジャワコード:

public class CourseSegmentsActivity extends ListActivity{

String courseName = null;
String segmentName = null;

@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);

    Intent i = getIntent();
    courseName = i.getStringExtra("courseName");

    ArrayList<HashMap<String,String>> myCoursesList = new ArrayList<HashMap<String,String>>();
    ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
    nameValuePairs.add(new BasicNameValuePair("cname",""+courseName));

    InputStream is = null; 
    String result = null;
    try{
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("****************");
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity entity = response.getEntity();
            is = entity.getContent();
    }catch(Exception e){
            Log.e("log_tag", "Error in http connection "+e.toString());
    }
    try{
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-10"),8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                    sb.append(line + "\n");
            }
            is.close();

            result=sb.toString();
    }catch(Exception e){
            Log.e("log_tag", "Error converting result "+e.toString());
    }

try{
    JSONArray jArray = new JSONArray(result);
    for(int ii=0;ii<jArray.length();ii++){
            JSONObject json_data = jArray.getJSONObject(ii);
            segmentName = json_data.getString("summary");

            HashMap<String,String> map = new HashMap<String, String>();
            map.put("summary", segmentName);
            myCoursesList.add(map);
    }
} catch(JSONException e){
    Log.e("log_tag", "Error parsing data "+e.toString());
}
ListAdapter adapter = new SimpleAdapter(this, myCoursesList,R.layout.course_segments_list_layout,
        new String[] {"summary"}, new int[] { R.id.name});

setListAdapter(adapter);


}
}

私が見逃しているものではない場合は?

4

2 に答える 2

2

いいえ、違います。REST 標準に従う場合は、http プロトコルを効率的に使用する必要があります。REST標準に従って、

データを読み取る場合 - メタデータを読み取る場合はGET を使用- データを書き込む場合は
HEAD を使用
- データを変更する場合は POST を使用 - 削除する場合は PUT を使用 - DELETE を使用

詳細については、http プロトコル ( RFC2616 )の w3c 仕様を参照してください。

于 2012-04-25T08:07:58.147 に答える
1

いいえ、POSTを使用してデータを取得しています。ただし、POSTは既存のデータを編集するために使用することを目的としています。RESTを使用する場合も、クエリ文字列はほとんどありません。通常、URLを使用してリソースを指定します。

http://en.wikipedia.org/wiki/REST#RESTful_web_servicesをご覧ください

于 2012-04-25T08:01:02.833 に答える