<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ionic Help]]></title><description><![CDATA[<p dir="auto">මෙන්න මේ function එකේදී posts variable එකට ලෝඩ් වෙන ඩේටා  HTML template එකේදී ගන්න බැහැ ඇයි ඒ  ...?</p>
<pre><code>import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { HttpClient } from '@angular/common/http';




export interface post {

  id: string;
  name: string;
  caption: string;
  Detail: string;
  poster: string;
  voice: string;
}


@Component({
  selector: 'app-articul',
  templateUrl: './articul.page.html',
  styleUrls: ['./articul.page.scss'],
})
export class ArticulPage implements OnInit {


  public posts: post;

  constructor(private route: ActivatedRoute, private http: HttpClient) { }

  ngOnInit() {

    let postid = this.route.snapshot.params['id'];
    var url = "assets/data/lifestyle/lifestyle.json"

    // get data from jsone 
    this.http.get&lt;post[]&gt;(url)
      .subscribe(data =&gt; {
        // var ptest = data[postid];
        this.posts = data[postid];
        // console.log(data[postid].name);
        console.log(this.posts.name)
      });


  }

}

</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1587918060179-screenshot-2020-04-26-at-9.50.25-pm.png" alt="Screenshot 2020-04-26 at 9.50.25 PM.png" class=" img-responsive img-markdown" /></p>
]]></description><link>https://lankadevelopers.lk/topic/571/ionic-help</link><generator>RSS for Node</generator><lastBuildDate>Wed, 17 Jun 2026 00:40:56 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/topic/571.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 26 Apr 2020 16:21:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ionic Help on Sat, 02 May 2020 17:55:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/326">@kusalrathna</a> elama</p>
]]></description><link>https://lankadevelopers.lk/post/3358</link><guid isPermaLink="true">https://lankadevelopers.lk/post/3358</guid><dc:creator><![CDATA[dev_lak]]></dc:creator><pubDate>Sat, 02 May 2020 17:55:20 GMT</pubDate></item><item><title><![CDATA[Reply to ionic Help on Fri, 01 May 2020 19:15:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/2">@dev_lak</a>  බග් එක හදාගත්තා</p>
]]></description><link>https://lankadevelopers.lk/post/3355</link><guid isPermaLink="true">https://lankadevelopers.lk/post/3355</guid><dc:creator><![CDATA[kusalrathna]]></dc:creator><pubDate>Fri, 01 May 2020 19:15:50 GMT</pubDate></item><item><title><![CDATA[Reply to ionic Help on Sun, 26 Apr 2020 21:44:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/2">@dev_lak</a> Hari mama dannnam balala</p>
]]></description><link>https://lankadevelopers.lk/post/3335</link><guid isPermaLink="true">https://lankadevelopers.lk/post/3335</guid><dc:creator><![CDATA[kusalrathna]]></dc:creator><pubDate>Sun, 26 Apr 2020 21:44:26 GMT</pubDate></item><item><title><![CDATA[Reply to ionic Help on Sun, 26 Apr 2020 20:50:34 GMT]]></title><description><![CDATA[<p dir="auto">console eke promise eke error ekak penwanwa,</p>
<pre><code>this.http.get&lt;post[]&gt;(url)
      .subscribe(data =&gt; {
        console.log(data)
      });
</code></pre>
<p dir="auto">http get request eka oya widiyata dala console eka check krnna, eke screenshot ekak reply krnna</p>
]]></description><link>https://lankadevelopers.lk/post/3329</link><guid isPermaLink="true">https://lankadevelopers.lk/post/3329</guid><dc:creator><![CDATA[dev_lak]]></dc:creator><pubDate>Sun, 26 Apr 2020 20:50:34 GMT</pubDate></item></channel></rss>