{"id":23495,"date":"2022-11-26T10:15:45","date_gmt":"2022-11-26T04:45:45","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/"},"modified":"2022-11-26T10:15:45","modified_gmt":"2022-11-26T04:45:45","slug":"solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/","title":{"rendered":"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-42623442\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"42623442\" data-parentid=\"42610680\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>index.html<\/p>\n<pre><code>&lt;!DOCTYPE html&gt;\n&lt;html data-ng-app=\"starter\"&gt;\n  &lt;head&gt;\n    &lt;meta charset=\"utf-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width\"&gt;\n    &lt;title&gt;&lt;\/title&gt;\n\n    &lt;link rel=\"manifest\" href=\"https:\/\/stackoverflow.com\/questions\/42610680\/manifest.json\"&gt;\n    &lt;link href=\"lib\/ionic\/css\/ionic.css\" rel=\"stylesheet\"&gt;\n    &lt;link href=\"css\/style.css\" rel=\"stylesheet\"&gt;\n\n    &lt;!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above\n    &lt;link href=\"css\/ionic.app.css\" rel=\"stylesheet\"&gt;\n    --&gt;\n    &lt;script src=\"cordova.js\"&gt;&lt;\/script&gt;\n    &lt;!-- ionic\/angularjs js --&gt;\n    &lt;script src=\"lib\/ionic\/js\/ionic.bundle.js\"&gt;&lt;\/script&gt;\n   &lt;script src=\"js\/angular-ui-router.min.js\"&gt;&lt;\/script&gt;\n\n    &lt;!-- cordova script (this will be a 404 during development) --&gt;\n\n    &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/ng-cordova\/0.1.27-alpha\/ng-cordova.js\"&gt;&lt;\/script&gt;\n\n    &lt;!-- your app's js --&gt;\n    &lt;script src=\"js\/app.js\"&gt;&lt;\/script&gt;\n\n    &lt;script src=\"js\/homeController.js\"&gt;&lt;\/script&gt;\n    &lt;script src=\"js\/secondController.js\"&gt;&lt;\/script&gt;\n\n  &lt;\/head&gt;\n  &lt;body&gt;\n\n    &lt;ion-pane&gt;\n        &lt;ion-content&gt;\n            &lt;div id=\"wrapper\" ui-view&gt;&lt;\/div&gt;\n        &lt;\/ion-content&gt;\n    &lt;\/ion-pane&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n<p>app.js<\/p>\n<pre><code>var app = angular.module('starter', ['ionic','ngCordova', 'ui.router'])\n\napp.run(function($ionicPlatform) {\n    $ionicPlatform.ready(function() {\n      if(window.cordova &amp;&amp; window.cordova.plugins.Keyboard) {\n        \/\/ Hide the accessory bar by default (remove this to show the accessory bar above the keyboard\n        \/\/ for form inputs)\n        cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);\n\n        \/\/ Don't remove this line unless you know what you are doing. It stops the viewport\n        \/\/ from snapping when text inputs are focused. Ionic handles this internally for\n        \/\/ a much nicer keyboard experience.\n        cordova.plugins.Keyboard.disableScroll(true);\n      }\n      ionic.Platform.fullScreen();\n      if(window.StatusBar) {\n        StatusBar.styleDefault();\n      }\n  });\n})\n\n app.config(function($stateProvider, $urlRouterProvider){\n  $stateProvider\n    .state('index', {\n      url: \"\",\n          templateUrl: \"home.html\",\n          controller: \"homeController\"            \n    })\n\n    .state('second', {\n      url: \"\/second\",\n          templateUrl: \"second.html\",\n          controller: \"secondController\"\n    })\n});\n<\/code><\/pre>\n<p>home.html<\/p>\n<pre><code>&lt;div style=\"width:100px;height: 50px;background-color: blue\"&gt;home&lt;\/div&gt;\n&lt;button ui-sref=\"second\"&gt;click&lt;\/button&gt;\n<\/code><\/pre>\n<p>second.html<\/p>\n<pre><code>&lt;div style=\"width:100px;height: 50px;background-color: green\"&gt;second&lt;\/div&gt;\n&lt;button ui-sref=\"index\"&gt;click&lt;\/button&gt;\n<\/code><\/pre>\n<p>homeController.js<\/p>\n<pre><code>app.controller('homeController', function($scope,$ionicPlatform,$state) {\n\n});\n<\/code><\/pre>\n<p>secondController.js<\/p>\n<pre><code>app.controller('secondController', function($scope,$ionicPlatform,$state) {\n\n});\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">3<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved I want to create a application in ionic with multiple page but i am not able to link other pages to a button <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] index.html &lt;!DOCTYPE html&gt; &lt;html data-ng-app=&#8221;starter&#8221;&gt; &lt;head&gt; &lt;meta charset=&#8221;utf-8&#8243;&gt; &lt;meta name=&#8221;viewport&#8221; content=&#8221;initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width&#8221;&gt; &lt;title&gt;&lt;\/title&gt; &lt;link rel=&#8221;manifest&#8221; href=&#8221;https:\/\/stackoverflow.com\/questions\/42610680\/manifest.json&#8221;&gt; &lt;link href=&#8221;lib\/ionic\/css\/ionic.css&#8221; rel=&#8221;stylesheet&#8221;&gt; &lt;link href=&#8221;css\/style.css&#8221; rel=&#8221;stylesheet&#8221;&gt; &lt;!&#8211; IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above &lt;link href=&#8221;css\/ionic.app.css&#8221; rel=&#8221;stylesheet&#8221;&gt; &#8211;&gt; &lt;script src=&#8221;cordova.js&#8221;&gt;&lt;\/script&gt; &lt;!&#8211; ionic\/angularjs js &#8211;&gt; &lt;script src=&#8221;lib\/ionic\/js\/ionic.bundle.js&#8221;&gt;&lt;\/script&gt; &lt;script &#8230; <a title=\"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\" aria-label=\"More on [Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[930,3129,4302],"class_list":["post-23495","post","type-post","status-publish","format-standard","hentry","category-solved","tag-angularjs","tag-ionic-framework","tag-ionic2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] index.html &lt;!DOCTYPE html&gt; &lt;html data-ng-app=&quot;starter&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;utf-8&quot;&gt; &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width&quot;&gt; &lt;title&gt;&lt;\/title&gt; &lt;link rel=&quot;manifest&quot; href=&quot;https:\/\/stackoverflow.com\/questions\/42610680\/manifest.json&quot;&gt; &lt;link href=&quot;lib\/ionic\/css\/ionic.css&quot; rel=&quot;stylesheet&quot;&gt; &lt;link href=&quot;css\/style.css&quot; rel=&quot;stylesheet&quot;&gt; &lt;!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above &lt;link href=&quot;css\/ionic.app.css&quot; rel=&quot;stylesheet&quot;&gt; --&gt; &lt;script src=&quot;cordova.js&quot;&gt;&lt;\/script&gt; &lt;!-- ionic\/angularjs js --&gt; &lt;script src=&quot;lib\/ionic\/js\/ionic.bundle.js&quot;&gt;&lt;\/script&gt; &lt;script ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-26T04:45:45+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button\",\"datePublished\":\"2022-11-26T04:45:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\"},\"wordCount\":62,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"angularjs\",\"ionic-framework\",\"ionic2\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\",\"name\":\"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-11-26T04:45:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button - JassWeb","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:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button - JassWeb","og_description":"[ad_1] index.html &lt;!DOCTYPE html&gt; &lt;html data-ng-app=\"starter\"&gt; &lt;head&gt; &lt;meta charset=\"utf-8\"&gt; &lt;meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width\"&gt; &lt;title&gt;&lt;\/title&gt; &lt;link rel=\"manifest\" href=\"https:\/\/stackoverflow.com\/questions\/42610680\/manifest.json\"&gt; &lt;link href=\"lib\/ionic\/css\/ionic.css\" rel=\"stylesheet\"&gt; &lt;link href=\"css\/style.css\" rel=\"stylesheet\"&gt; &lt;!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above &lt;link href=\"css\/ionic.app.css\" rel=\"stylesheet\"&gt; --&gt; &lt;script src=\"cordova.js\"&gt;&lt;\/script&gt; &lt;!-- ionic\/angularjs js --&gt; &lt;script src=\"lib\/ionic\/js\/ionic.bundle.js\"&gt;&lt;\/script&gt; &lt;script ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/","og_site_name":"JassWeb","article_published_time":"2022-11-26T04:45:45+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button","datePublished":"2022-11-26T04:45:45+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/"},"wordCount":62,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["angularjs","ionic-framework","ionic2"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/","url":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/","name":"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-26T04:45:45+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-i-want-to-create-a-application-in-ionic-with-multiple-page-but-i-am-not-able-to-link-other-pages-to-a-button\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] I want to create a application in ionic with multiple page but i am not able to link other pages to a button"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/23495","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=23495"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/23495\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=23495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=23495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=23495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}