{"id":132001,"date":"2024-03-25T21:29:32","date_gmt":"2024-03-25T12:29:32","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/"},"modified":"2024-03-27T06:02:53","modified_gmt":"2024-03-26T21:02:53","slug":"ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/","title":{"rendered":"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b"},"content":{"rendered":"<p>Ajax\u3068\u306f\u3001\u975e\u540c\u671f\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u3088\u3063\u3066\u30da\u30fc\u30b8\u5168\u4f53\u3092\u30ea\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u90e8\u5206\u7684\u306a\u30da\u30fc\u30b8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3001\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u9593\u306e\u30c7\u30fc\u30bf\u306e\u76f8\u4e92\u4f5c\u7528\u306e\u5b9f\u88c5\u6280\u8853\u3067\u3059\u3002<\/p>\n<p>Ajax\u3092\u5229\u7528\u3057\u305f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u9593\u306e\u30c7\u30fc\u30bf\u306e\u3084\u308a\u3068\u308a\u3092\u4e00\u822c\u7684\u306b\u884c\u306a\u3046\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002<\/p>\n<ol>\n<li>XMLHttpRequest \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210: JavaScript \u3067\u30c7\u30fc\u30bf\u306e\u9001\u53d7\u4fe1\u304c\u3067\u304d\u308b XMLHttpRequest \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">var<\/span> xhr = <span class=\"hljs-keyword\">new<\/span> <span class=\"hljs-title class_\">XMLHttpRequest<\/span>();\r\n<\/code><\/pre>\n<ol>\n<li>\u30cd\u30a4\u30c6\u30a3\u30d6\u306a\u65e5\u672c\u8a9e\u3067\u6587\u7ae0\u3092\u8a00\u3044\u63db\u3048\u3066\u304f\u3060\u3055\u3044\u30011\u3064\u306e\u9078\u629e\u80a2\u306e\u307f\u3067\u958b\u3044\u3066\u304f\u3060\u3055\u3044<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>xhr.<span class=\"hljs-title function_\">open<\/span>(<span class=\"hljs-string\">'GET'<\/span>, <span class=\"hljs-string\">'url'<\/span>, <span class=\"hljs-literal\">true<\/span>);\r\n<\/code><\/pre>\n<ol>\n<li>readyState \u304c\u5909\u66f4\u3055\u308c\u305f\u3068\u304d<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>xhr.<span class=\"hljs-property\">onreadystatechange<\/span> = <span class=\"hljs-keyword\">function<\/span>() {\r\n<span class=\"hljs-keyword\">if<\/span> (xhr.<span class=\"hljs-property\">readyState<\/span> === <span class=\"hljs-title class_\">XMLHttpRequest<\/span>.<span class=\"hljs-property\">DONE<\/span> &amp;&amp; xhr.<span class=\"hljs-property\">status<\/span> === <span class=\"hljs-number\">200<\/span>) {\r\n<span class=\"hljs-comment\">\/\/ \u5904\u7406\u54cd\u5e94\u6570\u636e<\/span>\r\n}\r\n};\r\n<\/code><\/pre>\n<ol>\n<li>\u9001\u4fe1<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>xhr.<span class=\"hljs-title function_\">send<\/span>();\r\n<\/code><\/pre>\n<ol>\n<li>\u30b5\u30fc\u30d0\u30fc\u304b\u3089\u306e\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf\u3092\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u3066\u51e6\u7406\u3059\u308b<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>xhr.<span class=\"hljs-property\">onreadystatechange<\/span> = <span class=\"hljs-keyword\">function<\/span>() {\r\n<span class=\"hljs-keyword\">if<\/span> (xhr.<span class=\"hljs-property\">readyState<\/span> === <span class=\"hljs-title class_\">XMLHttpRequest<\/span>.<span class=\"hljs-property\">DONE<\/span> &amp;&amp; xhr.<span class=\"hljs-property\">status<\/span> === <span class=\"hljs-number\">200<\/span>) {\r\n<span class=\"hljs-keyword\">var<\/span> response = xhr.<span class=\"hljs-property\">responseText<\/span>;\r\n<span class=\"hljs-comment\">\/\/ \u5904\u7406\u54cd\u5e94\u6570\u636e<\/span>\r\n}\r\n};\r\n<\/code><\/pre>\n<ol>\n<li>\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf\u306b\u5fdc\u3058\u3066\u3001JavaScript\u3092\u4f7f\u7528\u3057\u3066\u30da\u30fc\u30b8\u306e\u6307\u5b9a\u3057\u305f\u5834\u6240\u306b\u66f4\u65b0\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<p>Ajax \u306e\u5229\u70b9\u306f\u3001\u30da\u30fc\u30b8\u5168\u4f53\u3092\u30ea\u30ed\u30fc\u30c9\u305b\u305a\u306b\u30b5\u30fc\u30d0\u30fc\u3068\u30c7\u30fc\u30bf\u306e\u3084\u308a\u53d6\u308a\u304c\u884c\u3048\u308b\u3053\u3068\u306a\u306e\u3067\u3001\u30e6\u30fc\u30b6\u30fc\u306e\u4f53\u9a13\u3068\u30da\u30fc\u30b8\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u304c\u5411\u4e0a\u3057\u307e\u3059\u3002<\/p>\n<p>Ajax\u30ea\u30af\u30a8\u30b9\u30c8\u306f\u9001\u4fe1\u6642\u306b\u540c\u4e00\u751f\u6210\u30dd\u30ea\u30b7\u30fc\u306e\u5236\u7d04\u3092\u53d7\u3051\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u3001\u30ea\u30af\u30a8\u30b9\u30c8\u306eURL\u304c\u73fe\u5728\u306e\u30da\u30fc\u30b8\u306e\u30c9\u30e1\u30a4\u30f3\u3001\u30d7\u30ed\u30c8\u30b3\u30eb\u3001\u307e\u305f\u306f\u30dd\u30fc\u30c8\u3068\u4e00\u81f4\u3057\u306a\u3044\u5834\u5408\u3001\u30af\u30ed\u30b9\u30c9\u30e1\u30a4\u30f3\u51e6\u7406\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ajax\u3068\u306f\u3001\u975e\u540c\u671f\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u3088\u3063\u3066\u30da\u30fc\u30b8\u5168\u4f53\u3092\u30ea\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u90e8\u5206\u7684\u306a\u30da\u30fc\u30b8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3001\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u9593\u306e\u30c7\u30fc\u30bf\u306e\u76f8\u4e92\u4f5c\u7528\u306e\u5b9f\u88c5\u6280\u8853\u3067\u3059\u3002 Ajax\u3092\u5229\u7528\u3057\u305f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9 [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-132001","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b - Blog - Silicon Cloud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b\" \/>\n<meta property=\"og:description\" content=\"Ajax\u3068\u306f\u3001\u975e\u540c\u671f\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u3088\u3063\u3066\u30da\u30fc\u30b8\u5168\u4f53\u3092\u30ea\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u90e8\u5206\u7684\u306a\u30da\u30fc\u30b8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3001\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u9593\u306e\u30c7\u30fc\u30bf\u306e\u76f8\u4e92\u4f5c\u7528\u306e\u5b9f\u88c5\u6280\u8853\u3067\u3059\u3002 Ajax\u3092\u5229\u7528\u3057\u305f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-25T12:29:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T21:02:53+00:00\" \/>\n<meta name=\"author\" content=\"\u84ee, \u7ffc\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u84ee, \u7ffc\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/\",\"name\":\"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-25T12:29:32+00:00\",\"dateModified\":\"2024-03-26T21:02:53+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/cdc124a0aaebf26393d8d591183ca413\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/cdc124a0aaebf26393d8d591183ca413\",\"name\":\"\u84ee, \u7ffc\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/27308f733c7fcdac8617926a0100c77213339c4e501310a08c0baf946bf823bc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/27308f733c7fcdac8617926a0100c77213339c4e501310a08c0baf946bf823bc?s=96&d=mm&r=g\",\"caption\":\"\u84ee, \u7ffc\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/rentsubasa\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b - Blog - Silicon Cloud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/ja\/blog\/ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\/","og_locale":"ja_JP","og_type":"article","og_title":"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b","og_description":"Ajax\u3068\u306f\u3001\u975e\u540c\u671f\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u3088\u3063\u3066\u30da\u30fc\u30b8\u5168\u4f53\u3092\u30ea\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u90e8\u5206\u7684\u306a\u30da\u30fc\u30b8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3001\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u9593\u306e\u30c7\u30fc\u30bf\u306e\u76f8\u4e92\u4f5c\u7528\u306e\u5b9f\u88c5\u6280\u8853\u3067\u3059\u3002 Ajax\u3092\u5229\u7528\u3057\u305f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9 [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-25T12:29:32+00:00","article_modified_time":"2024-03-26T21:02:53+00:00","author":"\u84ee, \u7ffc","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u84ee, \u7ffc"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/","name":"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-25T12:29:32+00:00","dateModified":"2024-03-26T21:02:53+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/cdc124a0aaebf26393d8d591183ca413"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"Ajax\u3092\u4f7f\u7528\u3057\u3066\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3068\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3067\u3069\u306e\u3088\u3046\u306b\u30c7\u30fc\u30bf\u3092\u4ea4\u63db\u3059\u308b\u304b"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/cdc124a0aaebf26393d8d591183ca413","name":"\u84ee, \u7ffc","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/27308f733c7fcdac8617926a0100c77213339c4e501310a08c0baf946bf823bc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/27308f733c7fcdac8617926a0100c77213339c4e501310a08c0baf946bf823bc?s=96&d=mm&r=g","caption":"\u84ee, \u7ffc"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/rentsubasa\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/ajax%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%97%e3%81%a6%e3%83%95%e3%83%ad%e3%83%b3%e3%83%88%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a8%e3%83%90%e3%83%83%e3%82%af%e3%82%a8%e3%83%b3%e3%83%89%e3%81%a7%e3%81%a9\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/132001","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=132001"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/132001\/revisions"}],"predecessor-version":[{"id":178035,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/132001\/revisions\/178035"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=132001"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=132001"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=132001"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}