{"id":258,"date":"2009-05-26T23:03:02","date_gmt":"2009-05-26T15:03:02","guid":{"rendered":"http:\/\/percy.blog.ubuntu.org.cn\/?p=258"},"modified":"2009-05-26T23:03:02","modified_gmt":"2009-05-26T15:03:02","slug":"%e5%86%99%e6%97%a5%e5%bf%97%e6%97%b6%e6%80%8e%e4%b9%88%e6%a0%bc%e5%bc%8f%e5%8c%96%e4%bb%a3%e7%a0%81","status":"publish","type":"post","link":"https:\/\/pjq.me\/?p=258","title":{"rendered":"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801"},"content":{"rendered":"<p>\u80fd\u4e0d\u80fd\u591f\u8bed\u6cd5\u9ad8\u4eae\u663e\u793a\u3002<br \/>\n\u663e\u793a\u6210\u4e0b\u9762\u8fd9\u4e2a\u6837\u5b50\uff08\u7c7b\u4f3c\u4e8eeclipse\u7684\u6837\u5b50\uff09\uff1a<\/p>\n<table style=\"width: auto\" border=\"0\">\n<tbody>\n<tr>\n<td><a href=\"http:\/\/picasaweb.google.com\/lh\/photo\/IwTy-AbvrWJUtuHYzKasqA?feat=embedwebsite\"><img decoding=\"async\" src=\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg\" alt=\"\" \/><\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"font-family:arial,sans-serif;font-size:11px;text-align:right\">\u53d1\u4ef6\u4eba <a href=\"http:\/\/picasaweb.google.com\/pengjianqing\/Snapshoot?feat=embedwebsite\">snapshoot<\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u4f7f\u7528wp-syntax\u6765\u6807\u8bb0\uff1a<br \/>\nhttp:\/\/www.c2cer.com\/20081128\/wp-syntax-plugins-code\/<br \/>\n\u53c2\u8003\u8fd9\u6765\u5b9e\u73b0\u4e00\u952e\u63d2\u5165\uff1a<br \/>\n\u7f16\u8f91\uff1a\\wp-includes\\js\\quicktags.js<\/p>\n<table style=\"width:auto\">\n<tr>\n<td><a href=\"http:\/\/picasaweb.google.com\/lh\/photo\/uilFXJhl4akoc-8RBfqg0Q?feat=embedwebsite\"><img decoding=\"async\" src=\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/Sh5F5MMYZrI\/AAAAAAAAALY\/ihA39YHsbg0\/s400\/2009-05-28-160223_409x397_scrot.jpg\" \/><\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"font-family:arial,sans-serif;font-size:11px;text-align:right\">\u53d1\u4ef6\u4eba <a href=\"http:\/\/picasaweb.google.com\/pengjianqing\/Snapshoot?feat=embedwebsite\">snapshoot<\/a><\/td>\n<\/tr>\n<\/table>\n<p>\u4ee3\u7801\u4e2d\u52a0\u5165\uff1a<\/p>\n<table style=\"width:auto\">\n<tr>\n<td><a href=\"http:\/\/picasaweb.google.com\/lh\/photo\/AGf9_4v-kMWq5yXXjdxY7w?feat=embedwebsite\"><img decoding=\"async\" src=\"http:\/\/lh4.ggpht.com\/_GxH7-x2-l3Y\/Sh5GDrUv0GI\/AAAAAAAAALc\/VJz61xovUps\/s400\/2009-05-28-160621_538x129_scrot.jpg\" \/><\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"font-family:arial,sans-serif;font-size:11px;text-align:right\">\u53d1\u4ef6\u4eba <a href=\"http:\/\/picasaweb.google.com\/pengjianqing\/Snapshoot?feat=embedwebsite\">snapshoot<\/a><\/td>\n<\/tr>\n<\/table>\n<pre lang=\"java\">\n\npackage com.qisda.weather;\nimport android.app.Activity;\nimport android.os.Bundle;\nimport android.view.*;\nimport android.view.View.OnFocusChangeListener;\nimport android.view.View.OnTouchListener;\nimport android.widget.ImageView;\n\npublic class weatherUI extends Activity implements OnTouchListener {\n\/** Called when the activity is first created. *\/\n\nprivate ImageView w1;\nprivate ImageView w2;\nprivate ImageView w3;\nprivate ImageView w4;\n\nprivate ImageView wcurrent;\n\n@Override\npublic void onCreate(Bundle savedInstanceState) {\nsuper.onCreate(savedInstanceState);\nsetContentView(R.layout.main);\n\nw1 = (ImageView) findViewById(R.id.w1);\nw2 = (ImageView) findViewById(R.id.w2);\nw3 = (ImageView) findViewById(R.id.w3);\nw4 = (ImageView) findViewById(R.id.w4);\nwcurrent = (ImageView) findViewById(R.id.wcurrent);\n\nw1.setBackgroundResource(R.drawable.weather_clear);\nw2.setBackgroundResource(R.drawable.weather_clear_night);\nw3.setBackgroundResource(R.drawable.weather_cloudy);\nw4.setBackgroundResource(R.drawable.weather_showers);\nwcurrent.setBackgroundResource(R.drawable.weather_storm);\n\n\/*\n* wcurrent.setOnFocusChangeListener(new View.OnFocusChangeListener() {\n* public void onFocusChange(View v, boolean hasFocus) { if (true ==\n* hasFocus) { wcurrent.setBackgroundDrawable(v.getBackground());\n*\n* } else {\n*\n* } } }); \/ wcurrent.setOnTouchListener(new View.OnTouchListener() {\n* public boolean onTouch(View v, MotionEvent event) {\n*\n* return true; }\n*\n* });\n*\/\n\nw1.setOnTouchListener(this);\nw2.setOnTouchListener(this);\nw3.setOnTouchListener(this);\nw4.setOnTouchListener(this);\nwcurrent.setOnTouchListener(this);\n\n}\n\n@Override\npublic boolean onTouch(View v, MotionEvent event) {\n\/\/ImageView imageview = (ImageView)findViewById(v.getId());\n\/\/imageview.setBackgroundDrawable(v.getBackground());\n\nswitch (v.getId()) {\ncase R.id.w1:\nwcurrent.setBackgroundDrawable(v.getBackground());\nbreak;\ncase R.id.w2:\nwcurrent.setBackgroundDrawable(v.getBackground());\nbreak;\n\ncase R.id.w3:\nwcurrent.setBackgroundDrawable(v.getBackground());\nbreak;\n\ncase R.id.w4:\nwcurrent.setBackgroundDrawable(v.getBackground());\nbreak;\n\ncase R.id.wcurrent:\nwcurrent.setBackgroundDrawable(v.getBackground());\nbreak;\n\ndefault:\nbreak;\n\n}\nreturn true;\n}\n}\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u80fd\u4e0d\u80fd\u591f\u8bed\u6cd5\u9ad8\u4eae\u663e\u793a\u3002 \u663e\u793a\u6210\u4e0b\u9762\u8fd9\u4e2a\u6837\u5b50\uff08\u7c7b\u4f3c\u4e8eeclipse\u7684\u6837\u5b50\uff09\uff1a \u53d1\u4ef6\u4eba snapshoot \u4f7f\u7528wp-syntax\u6765\u6807\u8bb0\uff1a http:\/\/www.c2cer.com\/20081128\/wp-syntax-plugins-code\/ \u53c2\u8003\u8fd9\u6765\u5b9e\u73b0\u4e00\u952e\u63d2\u5165\uff1a \u7f16\u8f91\uff1a\\wp-includes\\js\\quicktags.js \u53d1\u4ef6\u4eba snapshoot \u4ee3\u7801\u4e2d\u52a0\u5165\uff1a \u53d1\u4ef6\u4eba snapshoot package com.qisda.weather; import android.app.Activity; import android.os.Bundle; import android.view.*; import android.view.View.OnFocusChangeListener; import android.view.View.OnTouchListener; import android.widget.ImageView; public class weatherUI extends Activity implements OnTouchListener { \/** Called when the activity<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-258","post","type-post","status-publish","format-standard","hentry","category-14"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801 - Jianqing&#039;s Blog<\/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:\/\/pjq.me\/?p=258\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801 - Jianqing&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"\u80fd\u4e0d\u80fd\u591f\u8bed\u6cd5\u9ad8\u4eae\u663e\u793a\u3002 \u663e\u793a\u6210\u4e0b\u9762\u8fd9\u4e2a\u6837\u5b50\uff08\u7c7b\u4f3c\u4e8eeclipse\u7684\u6837\u5b50\uff09\uff1a \u53d1\u4ef6\u4eba snapshoot \u4f7f\u7528wp-syntax\u6765\u6807\u8bb0\uff1a http:\/\/www.c2cer.com\/20081128\/wp-syntax-plugins-code\/ \u53c2\u8003\u8fd9\u6765\u5b9e\u73b0\u4e00\u952e\u63d2\u5165\uff1a \u7f16\u8f91\uff1awp-includesjsquicktags.js \u53d1\u4ef6\u4eba snapshoot \u4ee3\u7801\u4e2d\u52a0\u5165\uff1a \u53d1\u4ef6\u4eba snapshoot package com.qisda.weather; import android.app.Activity; import android.os.Bundle; import android.view.*; import android.view.View.OnFocusChangeListener; import android.view.View.OnTouchListener; import android.widget.ImageView; public class weatherUI extends Activity implements OnTouchListener { \/** Called when the activity\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pjq.me\/?p=258\" \/>\n<meta property=\"og:site_name\" content=\"Jianqing&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2009-05-26T15:03:02+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg\" \/>\n<meta name=\"author\" content=\"pengjianqing\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pengjianqing\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/pjq.me\/?p=258#article\",\"isPartOf\":{\"@id\":\"https:\/\/pjq.me\/?p=258\"},\"author\":{\"name\":\"pengjianqing\",\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\"},\"headline\":\"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801\",\"datePublished\":\"2009-05-26T15:03:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/pjq.me\/?p=258\"},\"wordCount\":15,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\"},\"image\":{\"@id\":\"https:\/\/pjq.me\/?p=258#primaryimage\"},\"thumbnailUrl\":\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg\",\"articleSection\":[\"\u81ea\u7531\u5206\u7c7b\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/pjq.me\/?p=258#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/pjq.me\/?p=258\",\"url\":\"https:\/\/pjq.me\/?p=258\",\"name\":\"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801 - Jianqing&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\/\/pjq.me\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/pjq.me\/?p=258#primaryimage\"},\"image\":{\"@id\":\"https:\/\/pjq.me\/?p=258#primaryimage\"},\"thumbnailUrl\":\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg\",\"datePublished\":\"2009-05-26T15:03:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/pjq.me\/?p=258#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/pjq.me\/?p=258\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pjq.me\/?p=258#primaryimage\",\"url\":\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg\",\"contentUrl\":\"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pjq.me\/?p=258#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/pjq.me\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pjq.me\/#website\",\"url\":\"https:\/\/pjq.me\/\",\"name\":\"Jianqing&#039;s Blog\",\"description\":\"Thoughts and Future\",\"publisher\":{\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pjq.me\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60\",\"name\":\"pengjianqing\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png\",\"contentUrl\":\"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png\",\"width\":460,\"height\":752,\"caption\":\"pengjianqing\"},\"logo\":{\"@id\":\"https:\/\/pjq.me\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/pjq.me\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801 - Jianqing&#039;s Blog","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:\/\/pjq.me\/?p=258","og_locale":"en_US","og_type":"article","og_title":"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801 - Jianqing&#039;s Blog","og_description":"\u80fd\u4e0d\u80fd\u591f\u8bed\u6cd5\u9ad8\u4eae\u663e\u793a\u3002 \u663e\u793a\u6210\u4e0b\u9762\u8fd9\u4e2a\u6837\u5b50\uff08\u7c7b\u4f3c\u4e8eeclipse\u7684\u6837\u5b50\uff09\uff1a \u53d1\u4ef6\u4eba snapshoot \u4f7f\u7528wp-syntax\u6765\u6807\u8bb0\uff1a http:\/\/www.c2cer.com\/20081128\/wp-syntax-plugins-code\/ \u53c2\u8003\u8fd9\u6765\u5b9e\u73b0\u4e00\u952e\u63d2\u5165\uff1a \u7f16\u8f91\uff1awp-includesjsquicktags.js \u53d1\u4ef6\u4eba snapshoot \u4ee3\u7801\u4e2d\u52a0\u5165\uff1a \u53d1\u4ef6\u4eba snapshoot package com.qisda.weather; import android.app.Activity; import android.os.Bundle; import android.view.*; import android.view.View.OnFocusChangeListener; import android.view.View.OnTouchListener; import android.widget.ImageView; public class weatherUI extends Activity implements OnTouchListener { \/** Called when the activity","og_url":"https:\/\/pjq.me\/?p=258","og_site_name":"Jianqing&#039;s Blog","article_published_time":"2009-05-26T15:03:02+00:00","og_image":[{"url":"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg","type":"","width":"","height":""}],"author":"pengjianqing","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pengjianqing","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pjq.me\/?p=258#article","isPartOf":{"@id":"https:\/\/pjq.me\/?p=258"},"author":{"name":"pengjianqing","@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60"},"headline":"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801","datePublished":"2009-05-26T15:03:02+00:00","mainEntityOfPage":{"@id":"https:\/\/pjq.me\/?p=258"},"wordCount":15,"commentCount":3,"publisher":{"@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60"},"image":{"@id":"https:\/\/pjq.me\/?p=258#primaryimage"},"thumbnailUrl":"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg","articleSection":["\u81ea\u7531\u5206\u7c7b"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pjq.me\/?p=258#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pjq.me\/?p=258","url":"https:\/\/pjq.me\/?p=258","name":"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801 - Jianqing&#039;s Blog","isPartOf":{"@id":"https:\/\/pjq.me\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pjq.me\/?p=258#primaryimage"},"image":{"@id":"https:\/\/pjq.me\/?p=258#primaryimage"},"thumbnailUrl":"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg","datePublished":"2009-05-26T15:03:02+00:00","breadcrumb":{"@id":"https:\/\/pjq.me\/?p=258#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pjq.me\/?p=258"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pjq.me\/?p=258#primaryimage","url":"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg","contentUrl":"http:\/\/lh3.ggpht.com\/_GxH7-x2-l3Y\/ShwHb6AD_UI\/AAAAAAAAAC4\/-9eM5_YOEgU\/s400\/2009-05-26-231403_618x537_scrot.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/pjq.me\/?p=258#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pjq.me\/"},{"@type":"ListItem","position":2,"name":"\u5199\u65e5\u5fd7\u65f6\u600e\u4e48\u683c\u5f0f\u5316\u4ee3\u7801"}]},{"@type":"WebSite","@id":"https:\/\/pjq.me\/#website","url":"https:\/\/pjq.me\/","name":"Jianqing&#039;s Blog","description":"Thoughts and Future","publisher":{"@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pjq.me\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/pjq.me\/#\/schema\/person\/0eb1e72d1e69fbbd9b5c0bfd8e2aae60","name":"pengjianqing","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pjq.me\/#\/schema\/person\/image\/","url":"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png","contentUrl":"https:\/\/pjq.me\/wp-content\/uploads\/2021\/12\/Screen-Shot-2021-12-02-at-6.10.58-PM.png","width":460,"height":752,"caption":"pengjianqing"},"logo":{"@id":"https:\/\/pjq.me\/#\/schema\/person\/image\/"},"url":"https:\/\/pjq.me\/?author=1"}]}},"views":3674,"_links":{"self":[{"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts\/258","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=258"}],"version-history":[{"count":0,"href":"https:\/\/pjq.me\/index.php?rest_route=\/wp\/v2\/posts\/258\/revisions"}],"wp:attachment":[{"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=258"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=258"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pjq.me\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=258"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}