1

GET、POST、PUT、DELETEメソッドを使用してdjango-tastypieを使用しました。クライアントとサーバーの両方が同じドメインからのものである場合、これらはスムーズに機能しますが、異なるドメインからリクエストを行っても何も起こりません。

どんな手掛かり?

models.py

from django.db import models
class Entry(models.Model):
    title = models.CharField(max_length=30)
    body = models.CharField(max_length=40)
    pub_date = models.DateField()
    slug=models.CharField(max_length=30)

resources.py

from django.contrib.auth.models import User
from tastypie.authorization import Authorization
from tastypie import fields
from tastypie.resources import ModelResource, ALL, ALL_WITH_RELATIONS  
from myapp.models import Entry


class UserResource(ModelResource):
    class Meta:
        queryset = User.objects.all()
        resource_name = 'user'
        excludes = ['email', 'password', 'is_active', 'is_staff', 'is_superuser']
        filtering = {
        'username': ALL,
        }


class EntryResource(ModelResource):

    class Meta:
    queryset = Entry.objects.all()
    resource_name = 'entry'
    authorization = Authorization()
    filtering = {
        'user': ALL_WITH_RELATIONS,
        'pub_date': ['exact', 'lt', 'lte', 'gte', 'gt'],
        }

urls.py

from django.views.generic.simple import direct_to_template
from django.conf.urls.defaults import *
from tastypie.api import Api
from myapp.resources import EntryResource, UserResource

v1_api = Api(api_name='v1')
v1_api.register(UserResource())
v1_api.register(EntryResource())

urlpatterns = patterns('',
# The normal jazz here...
     (r'^api/', include(v1_api.urls)),
     (r'^basic/$', direct_to_template, {'template': 'todos/test.html'})
)

そしてテンプレートファイルは以下の通りです

<!DOCTYPE html>
<html>
    <head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script language="javascript">
  jQuery(document).ready(function($) {
      var data = JSON.stringify({
      "body": "This will prbbly be my lst edited  post.",
      "pub_date": "2011-05-22T00:46:38",
       "slug": "another-post",
      "title": "Another Post",

     });
  $.ajax({
        url: "http://localhost:8000/api/v1/entry/1/?format=json",
        type: 'PUT',
            contentType: 'application/json',
        data: data,
        dataType: 'json',
        processData: false,
        success:function(data) { 
            alert(data);
            },
        error : function(data){
            alert('error')
            },  
        })
  }) 

 </script>
    </head>
    <body>
body content goes here 
    </body>
</html>

http:// localhost:8000 / basicを実行すると、CRUDで完全に機能するようになりました

後でapacheサーバーをインストールし、そのbasic.htmlをコピーしました。http:// localhost:81 / basic.htmlを実行すると、jsonデータがサーバーに受け入れられません。私はapacheとpythonサーバーの両方を並行して実行しました。

4

1 に答える 1

2

クロスドメインajaxを実行するようにクライアントとサーバーを設定する必要があります。

jqueryでは、呼び出しで設定crossDomain : trueします( http://api.jquery.com/jQuery.ajax/を参照)$.ajax()

サーバー側では、いくつかのacceptヘッダーを設定する必要があります http://enable-cors.org/

CORS仕様を調べると、クロスドメインリクエストの詳細を確認できます: http ://www.w3.org/TR/cors/

于 2012-05-10T07:47:45.643 に答える