<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	댓글: [JS] $.ajax 기본 코드	</title>
	<atom:link href="https://wp.goodzz.shop/dev/javascript/422/feed" rel="self" type="application/rss+xml" />
	<link>https://wp.goodzz.shop/dev/javascript/422</link>
	<description>기록</description>
	<lastBuildDate>Wed, 13 Sep 2023 00:24:12 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		작성자: goodzz		</title>
		<link>https://wp.goodzz.shop/dev/javascript/422#comment-9</link>

		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Fri, 25 Aug 2023 05:53:12 +0000</pubDate>
		<guid isPermaLink="false">https://wp.goodzz.site/?p=422#comment-9</guid>

					<description><![CDATA[&lt;pre class=&quot;ql-syntax&quot; spellcheck=&quot;false&quot;&gt;$.ajax({
    type : &quot;GET&quot;,
    url : api,
    data : param,
    dataType : &quot;json&quot;,
    contentType:&quot;application/json&quot;,
    async : true,
    //cache: true,
    success : function(data){
        
        
    },
    error : function(XMLHttpRequest, textStatus, errorThrown){
        console.log(XMLHttpRequest); console.log(textStatus); console.log(errorThrown);
        $(&quot;#pop_list&quot;).html(&quot;데이터를 가져오는데 문제가 있습니다. 잠시후 다시 시도해주세요.&quot;);
    }
});

&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<pre class="ql-syntax" spellcheck="false">$.ajax({
    type : "GET",
    url : api,
    data : param,
    dataType : "json",
    contentType:"application/json",
    async : true,
    //cache: true,
    success : function(data){
        
        
    },
    error : function(XMLHttpRequest, textStatus, errorThrown){
        console.log(XMLHttpRequest); console.log(textStatus); console.log(errorThrown);
        $("#pop_list").html("데이터를 가져오는데 문제가 있습니다. 잠시후 다시 시도해주세요.");
    }
});

</pre>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
