0

残りのサービスから Json データを返したにもかかわらず、コンテンツ ヘッダーに文字列としての応答が表示されます。この問題は、特に ajax 関数呼び出しのポスト リクエストで発生していますか?

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">/script> 
function authenticate(Source,Destination) {
   $.ajax
    ({
      type: 'POST',
        url: 'REST/WebService/InsertFeeds',
        dataType:'json',
        //async: false,
        data:{'Source': Source, 'Destination': Destination },
        //headers: { 
        contentType: 'application/json', 
        //},
        error:function()
        {
            alert("unsuccessfull");
        },
        success:function(feeds)
        {   
            alert(feeds);
        }
     });
  }

投稿注釈を使用してデータを挿入するための My Rest Service コード:

@Path("/WebService")

public class LoginService 
{

    @POST
    @Path("/InsertFeeds")
    @Consumes("application/json")
    @Produces("application/json")
        public String messageFeed2(@FormParam("Source") String Source,@FormParam("Destination") String Destination)
    {
        String feeds  = null;
        try 
        {

            String feedData=null;
            ProjectManager projectManager= new ProjectManager();
            feedData=projectManager.InsertFeeds(Source,Destination);
            feeds=FeedTransformer.UserFeeding(feedData);//converts string in Json format using gson library

        } catch (Exception e)
        {
            System.out.println("error");
        }
        return feeds;
    }


}
4

1 に答える 1

0

交換:

success:function(feeds)
    {   
        alert(feeds);
    }  

success:function(feeds)
    {   
        var obj = jQuery.parseJSON(feeds);
        console.log(obj);
    }  

注: Rest サービスからの応答を取得するとき、それは json 文字列であるため、オブジェクトに変換する必要があるため、var obj を使用できるようになりました。

于 2013-07-26T12:33:26.953 に答える