Coder Social home page Coder Social logo

Comments (3)

MurhafSousli avatar MurhafSousli commented on August 21, 2024 1

@Jscott388 Nope, you don't need to do anything from the component.
Add ? here res?.data
Look I just tested the example now

test

from ngx-wordpress.

MurhafSousli avatar MurhafSousli commented on August 21, 2024

Hi @davetbo, I have already put simple examples and advanced examples.
I suggest you read the docs step by step, try the simple examples, if it did not work, then open an issue describe what you are trying to do and include your usage of the module and I will help you if I can.

Here is the simplest straight forward example I can give:

  • Generate a new empty project using Angular CLI
  • Install the module npm install --save ngx-wordpress
  • Go to the root module app.module.ts and import WordPressModule
import { WordPressModule } from 'ngx-wordpress';
@NgModule({
imports: [
    // ...
    WordPressModule.forRoot('https://example.com') //address to your WordPress site
  ]
})
  • Go to app template app.component.html and add the following:
<ul wpCollection="posts" [wpArgs]="{ }" (wpResponse)="res = $event">

   <li *ngFor="let post of res?.data"> {{ post.title.rendered }} </li>

</ul>

You should see your WordPress posts titles now

from ngx-wordpress.

Jscott388 avatar Jscott388 commented on August 21, 2024

This does not work. No definition found for res:
<li *ngFor="let post of res.data"> {{ post.title.rendered }} </li>
Should there be something done in the component?

from ngx-wordpress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.