{"id":2984,"date":"2012-05-29T23:55:20","date_gmt":"2012-05-29T14:55:20","guid":{"rendered":"http:\/\/nanoappli.com\/blog\/?p=2984"},"modified":"2016-02-14T22:26:50","modified_gmt":"2016-02-14T13:26:50","slug":"research-artisan-lite%e3%81%ae%e3%82%bd%e3%83%bc%e3%82%b9%e3%82%b3%e3%83%bc%e3%83%89%e8%a7%a3%e6%9e%90%e3%83%a1%e3%83%a22","status":"publish","type":"post","link":"http:\/\/nanoappli.com\/blog\/archives\/2984","title":{"rendered":"[Research Artisan]\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u89e3\u6790\u30e1\u30e22"},"content":{"rendered":"<p>\nResearchArtisanLite\u306e\u89e3\u6790\u30e1\u30e2\u305d\u306e2<br \/>\n\u305d\u306e1\u306f\u3053\u3061\u3089\uff1a<a href=\"http:\/\/nanoappli.com\/blog\/archives\/2883\">Research Artisan Lite\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u89e3\u6790\u30e1\u30e2<\/a><br \/>\n<br \/>\n\u30a8\u30f3\u30c8\u30ea\u30dd\u30a4\u30f3\u30c8\u3067\u3042\u308bindex.php\u304b\u3089\u3001\u30c7\u30fc\u30bf\u306e\u53d6\u5f97\u5468\u308a\u307e\u3067\u306e\u51e6\u7406\u306e\u6d41\u308c\u3092\u8abf\u3079\u305f\u3068\u304d\u306e\u30e1\u30e2\u3067\u3059\u3002<br \/>\n\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u3092\u6539\u5909\u3059\u308b\u4eba\u5411\u3051\u306a\u306e\u3067\u3001\uff11\u30e6\u30fc\u30b6\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u969b\u306b\u306f\u5168\u304f\u5fc5\u8981\u306a\u3044\u60c5\u5831\u3067\u3059\u3002<br \/>\n<br \/>\n<br \/>\n<br \/>\n<br \/>\n\u30d8\u30eb\u30d1\u30fc\u306e\u30ed\u30fc\u30c9\u306f,RaView->showView()\u5185\u304b\u3089\u30b3\u30fc\u30eb\u3055\u308c\u308b_loadHelper()\u3067\u884c\u308f\u308c\u308b.<br \/>\n\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3078\u5230\u9054\u3059\u308b\u305f\u3081\u306e\u6d41\u308c\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3002<br \/>\n<pre lang=\"x\">\nindex.php\n    Ra->execute()\n        Ra->_showView()\n            RaView->showView()  \n                RaView->_loadHelper()\n                    RaView->_checkHelper()\n                        $helperFile = RA_CORE_DIR. RA_HELPER_DIR. ucfirst($controller). 'Helper.php';\n                        require $helperFile;\n\n                    return new $helperName($request, $session, $message, $result, $controller, $action);\n<\/pre>\n<br \/>\nHelper\u30af\u30e9\u30b9\u3092new\u3059\u308b\u306b\u306f\u3001\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u4ee5\u4e0b\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u5fc5\u8981<br \/>\n<pre lang=\"x\">\npublic function __construct(\n                            RaRequest $request,\n                            RaSession $session, \n                            RaMessage $message,\n                            RaResult $result=null\n                            $controller,\n                            $action );\n<\/pre>\n<br \/>\n\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u5f15\u6570\u306f\u3001ResearchHelper\u30af\u30e9\u30b9\u3092\u898b\u308b\u3068result\u306b\u3064\u3044\u3066\u306f\u7701\u7565\u53ef\u80fd\u3068\u306a\u3063\u3066\u3044\u308b<br \/>\n<pre lang=\"x\">\nclass ResearchHelper extends BaseHelper {\n      public function __construct(RaRequest $request, RaSession $session, RaMessage $message, RaResult $result=null, $controller, $action) {\n        parent::__construct($request, $session, $message, $result, $controller, $action);\n      }\n<\/pre>\n<br \/>\n<br \/>\n\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u5f15\u6570\u306f\u305d\u308c\u305e\u308c\u3001\u4e0b\u8a18\u306e\u30e1\u30bd\u30c3\u30c9\u3067\u521d\u671f\u5316\u3055\u308c\u3066\u3044\u308b\u3002<br \/>\n<pre lang=\"x\">\nRa->__construct()\n    $_request    = new RaRequest();\n    $_session    = new RaSession();\n    $_message    = new RaMessage();\n    $_controller = $this->_request->get('controller');\n    $_action     = $this->_request->get('action');\n\nRa->execute()\n    $result = new RaResult();\n<\/pre>\n<br \/>\n<br \/>\n<br \/>\n\u30da\u30fc\u30b8(view)\u306b\u8868\u793a\u3059\u308b\u30c7\u30fc\u30bf\u306f\u3001ResearchHelper->uniqueCount()\u7b49\u3067\u53d6\u5f97\u3057\u3066\u3044\u308b\u304c\u3001\u3053\u308c\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u6e21\u3055\u308c\u305fresult\u306e\u60c5\u5831\u3092\u8fd4\u3057\u3066\u3044\u308b\u3060\u3051<br \/>\n<pre lang=\"x\">\npublic function uniqueCount() {\n    print $this->getFormatNumber($this->result->get('uniqueCount'));\n}\n<\/pre>\n<br \/>\nresult\u3078\u306e\u5024\u3092\u30bb\u30c3\u30c8\u306f\u3001ReserchController->_doResearch()\u3067\u884c\u308f\u308c\u3066\u3044\u308b\u3002<br \/>\n\u5177\u4f53\u7684\u306b\u306ffindSummary()\u30e1\u30bd\u30c3\u30c9\u306e\u623b\u308a\u5024\u3002<br \/>\n<pre lang=\"x\">\n_doResearch() {\n    $log = new Log();\n    ...\n    $results = $log->findSummary($findOptions, $method, $yyyyMmOptions, $compareValue);\n    ...\n\n    $result = $this->result;\n    foreach($results as $k => $v) {\n      $result->set($k, $v);\n    }\n    ...\n}\n<\/pre>\n<br \/>\n<br \/>\nLog->findSummary()\u3067\u306f\u3001findQuery()\u3067DB\u304b\u3089\u306e\u7d50\u679c\u30bb\u30c3\u30c8\u3092\u53d6\u5f97\u3057\u3066\u3044\u308b\u3002<br \/>\n<pre lang=\"x\">\n$rs = $this->findQuery($options);\nwhile ($row = $this->fetchRow($rs)) {\n  $this->clearData();\n  $data = $this->getData();\n\n  foreach($data as $column => $value) {\n    if (isset($row[$column])) $this->setValue($column, $row[$column]);\n  }\n\n  $this->setValue('yyyy', $term['yyyy']);\n  $this->setValue('mm', $term['mm']);\n  $function = '_'. $method;\n  if (method_exists($this, $function)) {\n    $this->$function();\n  }\n}\n<\/pre>\n<br \/>\n<br \/>\nfetchRow()\u306f\u7d99\u627f\u5143\u306eRaModel.php\u3067\u5b9a\u7fa9\u3055\u308c\u3001MySQL\u306eAPI\u3092\u30b3\u30fc\u30eb\u3057\u3066\u3044\u308b\u3002<br \/>\n\u30b9\u30b3\u30fc\u30d7\u304cprotected\u306a\u306e\u3067\u3001\u7d99\u627f\u5148\u30af\u30e9\u30b9\u3057\u304b\u672c\u30e1\u30bd\u30c3\u30c9\u306f\u30b3\u30fc\u30eb\u3067\u304d\u306a\u3044\u3002<br \/>\n<pre lang=\"x\">\nprotected final function fetchRow($rs) {\n    return mysql_fetch_array($rs, MYSQL_ASSOC);\n}\n<\/pre>\n<br \/>\nfindQuery()\u3082\u3001RaModel\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u3002<br \/>\n<pre lang=\"x\">\nprotected final function findQuery($options=null) {\n    $query = 'SELECT *';\n    $query .= ' FROM ' . $this->_escapeName($this->_table);\n    $query .= $this->_makeOption($options);\n    return $this->query($query);\n}\n<\/pre>\n<br \/>\n<br \/>\nfindQuery\u3078\u6e21\u3059\u5f15\u6570\u3068\u3001\u623b\u3063\u3066\u304f\u308bSQL\u306e\u4f8b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u611f\u3058\u306b\u306a\u3063\u3066\u3044\u308b<br \/>\n<pre lang=\"x\">\n\u5f15\u6570($options)\n    array(2) {\n      [\"condition\"]=>\n      array(3) {\n        [0]=>\n        string(19) \"dd >= ? AND dd <= ?\"\n        [1]=>\n        string(2) \"25\"\n        [2]=>\n        string(2) \"25\"\n      }\n      [\"order\"]=>\n      string(30) \"dd ASC, hh ASC, mi ASC, ss ASC\"\n    }\n\n\u623b\u308a\u5024\n    \"SELECT * FROM `ra_log_201205` WHERE dd >= '25' AND dd <= '25' ORDER BY dd ASC, hh ASC, mi ASC, ss ASC\"\n<\/pre>\n<br \/>\n<br \/>\n\u307e\u305f\u3001findQuery\u306e\u547c\u3073\u51fa\u3057\u5143\u3060\u3063\u305ffindSummary\u306e\u5f15\u6570\u4f8b\u306f\u3001\u4ee5\u4e0b\u306e\u901a\u308a<br \/>\n<pre lang=\"x\">\noptions\n    array(2) {\n      [\"condition\"]=>\n      array(1) {\n        [0]=>\n        string(0) \"\"\n      }\n      [\"order\"]=>\n      string(30) \"dd ASC, hh ASC, mi ASC, ss ASC\"\n    }\n\nmethod\n    string(4) \"time\"\n\nyyyyMmOptions\n    array(6) {\n      [\"yyyyFrom\"]=>\n      string(4) \"2012\"\n      [\"mmFrom\"]=>\n      string(2) \"05\"\n      [\"ddFrom\"]=>\n      string(2) \"25\"\n      [\"yyyyTo\"]=>\n      string(4) \"2012\"\n      [\"mmTo\"]=>\n      string(2) \"05\"\n      [\"ddTo\"]=>\n      string(2) \"25\"\n    }\n\ncompareValue\n    NULL\n<\/pre>\n<br \/>\n<br \/>\nLog\u30af\u30e9\u30b9\u306e\u7d99\u627f\u95a2\u4fc2\u306f\u4ee5\u4e0b\u306e\u901a\u308a<br \/>\n<pre lang=\"x\">\nclass Log extends RaModel {\n    public function __construct($noCreate=false, $yyyymm=null) {\n        ...\n    }\n    ...\n}\n\nabstract class RaModel {\n    protected final function findQuery($options=null) {\n        ...\n    }\n\n    ...\n}\n<\/pre>\n<br \/>\n<br \/>\n<br \/>\n\u8abf\u67fb\u7d50\u679c\u3088\u308a,\u901a\u5e38\u306e\u6d41\u308c\u4ee5\u5916\u3067DB\u304b\u3089\u30c7\u30fc\u30bf\u53d6\u5f97\u3057\u305f\u3044\u6642\u306f...<br \/>\n\u4f55\u3089\u304b\u306e\u51e6\u7406\u3067\u3001\u7279\u5225\u306b\u30a2\u30af\u30bb\u30b9\u30ed\u30b0\u306e\u30c7\u30fc\u30bf\u304c\u6b32\u3057\u3044\u5834\u5408\u306f\u3001\u81ea\u524d\u3067Log\u30af\u30e9\u30b9\u3092new\u3057\u3066\u30c7\u30fc\u30bf\u3092\u53d6\u5f97\u3059\u308b\u3002\u65e2\u5b58\u306e\u51e6\u7406\u3092\u6d41\u7528\u3059\u308b\u6642\u306f\u3001findSummary\u30e1\u30bd\u30c3\u30c9\u306e\u7b2c\u4e8c\u5f15\u6570\u3067\u3001\u6b32\u3057\u3044\u30c7\u30fc\u30bf\u304c\u8868\u793a\u3055\u308c\u3066\u3044\u308b\u753b\u9762\u3092\u6307\u5b9a\u3059\u308b\u3068\u697d\u30c1\u30f3\u3002\u305d\u306e\u969b,\u691c\u7d22\u6761\u4ef6\u3068\u3057\u3066\u3001findOptions\u3092\u6e21\u3055\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u304c\u3001\u4f55\u3092\u6e21\u3059\u304b\u306ffindSummary()\u306e\u5185\u90e8\u3067\u30c7\u30d0\u30c3\u30b0\u30ed\u30b0\u3092\u843d\u3068\u3059\u3088\u3046\u306b\u5909\u66f4\u3057\u3001\u7d50\u679c\u304b\u3089\u9006\u7b97\u3057\u305f\u65b9\u304c\u624b\u3063\u53d6\u308a\u65e9\u3044\u3002<br \/>\n<br \/>\n<br \/>\n\u4e0a\u8a18\u65b9\u91dd\u306b\u5f93\u3063\u3066\u8a66\u3057\u305f\u7d50\u679c\u3002<br \/>\n\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u3001\u7279\u5b9a\u306e\u65e5\u306b\u5bfe\u3059\u308b\u30a2\u30af\u30bb\u30b9\u6570\u304c\u53d6\u5f97\u53ef\u80fd\u3068\u306a\u308b\u3002<br \/>\n<pre lang=\"x\">\n    $request    = new RaRequest();\n    $session    = new RaSession();\n    $message    = new RaMessage();\n    $controller = \"\";\n    $action     = \"\";\n    $result     = new RaResult();\n\n\n\n    $findOptions = array();\n    $findOptions[\"condition\"] = array();\n    $findOptions[\"condition\"][] = \"\";\n    $findOptions[\"condition\"][] = \"dd ASC, hh ASC, mi ASC, ss ASC\";\n\n    $yyyyMmOptions = array();\n    $yyyyMmOptions[\"yyyyFrom\"] = \"2012\";\n    $yyyyMmOptions[\"mmFrom\"]   = \"05\";\n    $yyyyMmOptions[\"ddFrom\"]   = \"27\";\n    $yyyyMmOptions[\"yyyyTo\"]   = \"2012\";\n    $yyyyMmOptions[\"mmTo\"]     = \"05\";\n    $yyyyMmOptions[\"ddTo\"]     = \"27\";\n\n    $compareValue = NULL;\n\n    $log = new Log(true);\n    $log->setKeys();\n    $results = $log->findSummary($findOptions, \"time\", $yyyyMmOptions, $compareValue);\n    echo( \"UU=\" . $results[\"uniqueCount\"] . \"\\n\" );\n    echo( \"PV=\" . $results[\"totalCount\" ] . \"\\n\" );\n<\/pre><\/p>\n","protected":false},"excerpt":{"rendered":"<p>ResearchArtisanLite\u306e\u89e3\u6790\u30e1\u30e2\u305d\u306e2 \u305d\u306e1\u306f\u3053\u3061\u3089\uff1aResearch Artisan Lite\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u89e3\u6790\u30e1\u30e2 \u30a8\u30f3\u30c8\u30ea\u30dd\u30a4\u30f3\u30c8\u3067\u3042\u308bindex.php\u304b\u3089\u3001\u30c7\u30fc\u30bf\u306e\u53d6\u5f97\u5468\u308a\u307e\u3067\u306e\u51e6\u7406\u306e\u6d41\u308c\u3092\u8abf\u3079\u305f\u3068\u304d\u306e\u30e1\u30e2\u3067\u3059\u3002 \u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u3092\u6539\u5909\u3059\u308b\u4eba\u5411\u3051\u306a\u306e\u3067\u3001\uff11\u30e6\u30fc\u30b6\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u969b\u306b\u306f\u5168\u304f\u5fc5\u8981\u306a\u3044\u60c5\u5831\u3067\u3059\u3002 \u30d8\u30eb\u30d1\u30fc\u306e\u30ed\u30fc\u30c9\u306f,RaView->showView()\u5185\u304b\u3089\u30b3\u30fc\u30eb\u3055\u308c\u308b_loadHelper()\u3067\u884c\u308f\u308c\u308b. \u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3078\u5230\u9054\u3059\u308b\u305f\u3081\u306e\u6d41\u308c\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3002 index.php Ra->execute() Ra->_showView() RaView->sho\u2026<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true},"categories":[1],"tags":[190],"jetpack_featured_media_url":"","jetpack_publicize_connections":[],"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":3004,"url":"http:\/\/nanoappli.com\/blog\/archives\/3004","url_meta":{"origin":2984,"position":0},"title":"[Research Artisan]\u30a2\u30af\u30bb\u30b9\u30ed\u30b0\u3092RSS\u914d\u4fe1\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3","date":"2012\u5e745\u670830\u65e5","format":false,"excerpt":"\u30d5\u30ea\u30fc\u306ePHP\u88fd\u30a2\u30af\u30bb\u30b9\u30ed\u30b0\u89e3\u6790\u30bd\u30d5\u30c8\u3068\u3057\u3066\u6709\u540d\u306aReserch Artisan Lite\u3067\u3059\u304c\u3001\u53d6\u2026","rel":"","context":"","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/nanoappli.com\/blog\/wp-content\/uploads\/2012\/05\/20120530_01-500x217.jpg?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":2883,"url":"http:\/\/nanoappli.com\/blog\/archives\/2883","url_meta":{"origin":2984,"position":1},"title":"Research Artisan Lite\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u89e3\u6790\u30e1\u30e2","date":"2012\u5e745\u670826\u65e5","format":false,"excerpt":"\u30c7\u30fc\u30bf\u96c6\u8a08\u5468\u308a\u306e\u30ed\u30b8\u30c3\u30af\u3092\u8abf\u67fb\u3057\u305f\u3068\u304d\u306e\u30e1\u30e2\u3002 \u30bd\u30fc\u30b9\u3092\u8abf\u67fb\u3057\u305f\u76ee\u7684\u306f\u3001Research Artis\u2026","rel":"","context":"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3528,"url":"http:\/\/nanoappli.com\/blog\/archives\/3528","url_meta":{"origin":2984,"position":2},"title":"[cygwin]gcc\u3067\u4f5c\u3063\u305f\u30d7\u30ed\u30b0\u30e9\u30e0\u3067,\u65e5\u672c\u8a9e\u304c\u6587\u5b57\u5316\u3051\u3059\u308b","date":"2012\u5e747\u670810\u65e5","format":false,"excerpt":"windows\u306ecygwin\u74b0\u5883\u306b\u3066gcc\u3067\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u3001\u65e5\u672c\u8a9e\u304c\u6587\u5b57\u5316\u3051\u3059\u308b\u5834\u5408\u304c\u3042\u308a\u2026","rel":"","context":"","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/nanoappli.com\/blog\/wp-content\/uploads\/2012\/07\/20120710_02.jpg?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":2915,"url":"http:\/\/nanoappli.com\/blog\/archives\/2915","url_meta":{"origin":2984,"position":3},"title":"[Research Artisan]\u30ed\u30b0\u30a4\u30f3\u5f8c\u306e\u753b\u9762\u306b\u3001AdSense\u30af\u30ea\u30c3\u30af\u6570\uff65\u30ea\u30f3\u30af\u30af\u30ea\u30c3\u30af\u6570\u3092\u8868\u793a\u3055\u305b\u308b","date":"2012\u5e745\u670827\u65e5","format":false,"excerpt":"Reserch Artisan Lite\u3067\u306f\u3001\u30ed\u30b0\u30a4\u30f3\u3092\u884c\u3063\u305f\u76f4\u5f8c\u306b\u3001\u5f53\u65e5\u306e\u6642\u9593\u5225\u30a2\u30af\u30bb\u30b9\u6570\u304c\u8868\u793a\u3055\u2026","rel":"","context":"","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/nanoappli.com\/blog\/wp-content\/uploads\/2012\/05\/20120527_07.jpg?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":3,"url":"http:\/\/nanoappli.com\/blog\/archives\/3","url_meta":{"origin":2984,"position":4},"title":"WordPress\u3067blog\u4f5c\u6210\u6642\u306e\u521d\u671f\u8a2d\u5b9a","date":"2011\u5e7412\u670819\u65e5","format":false,"excerpt":"\u672c\u30d6\u30ed\u30b0\u306e\u521d\u671f\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u3068\u3057\u3066\u5b9f\u65bd\u3057\u305f\u5185\u5bb9\u3067\u3059\u3002 \u5099\u5fd8\u9332\u3068\u3057\u3066\u306e\u30e1\u30e2\u3067\u3059\u3002 1. WordPres\u2026","rel":"","context":"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2896,"url":"http:\/\/nanoappli.com\/blog\/archives\/2896","url_meta":{"origin":2984,"position":5},"title":"Reserch Artisan Lite\u306e\u660e\u7d30\u753b\u9762\u3067\u30011\u30da\u30fc\u30b8\u3042\u305f\u308a\u306e\u8868\u793a\u4ef6\u6570\u3092\u5909\u66f4\u3059\u308b","date":"2012\u5e745\u670827\u65e5","format":false,"excerpt":"PHP\u88fd\u30a2\u30af\u30bb\u30b9\u89e3\u6790\u306e\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3068\u3057\u3066\u3001\u6709\u540d\u306a\u30e2\u30ce\u306bReserch Artisan \u2026","rel":"","context":"","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/nanoappli.com\/blog\/wp-content\/uploads\/2012\/05\/20120527_06.jpg?resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/posts\/2984"}],"collection":[{"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/comments?post=2984"}],"version-history":[{"count":4,"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/posts\/2984\/revisions"}],"predecessor-version":[{"id":7092,"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/posts\/2984\/revisions\/7092"}],"wp:attachment":[{"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/media?parent=2984"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/categories?post=2984"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/nanoappli.com\/blog\/wp-json\/wp\/v2\/tags?post=2984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}