Coder Social home page Coder Social logo

Relative child-routing about angular HOT 7 CLOSED

ui-router avatar ui-router commented on April 25, 2024
Relative child-routing

from angular.

Comments (7)

christopherthielen avatar christopherthielen commented on April 25, 2024 1

There is now a nontrivial sample app built with the Angular-CLI.

from angular.

christopherthielen avatar christopherthielen commented on April 25, 2024

I just checked the plunker and it actually does use relative links:

https://plnkr.co/edit/1wB5QZSPvvCJZXBWMLXU?p=preview

components/people.ts

          <li *ngFor="let person of people">
            <a uiSref=".person" [uiParams]="{ personId: person.id }">
              {{person.name}}
            </a>
          </li>

What troubles are you having?

from angular.

niwrA avatar niwrA commented on April 25, 2024

I have to use people.person, or it simply won't work.

My biggest problem right now though, which may make me return to regular Angular 2 routing, is that the angular cli can't compile with the UIRouter.ForRoot() line in there. If I add it back after ng serve it runs fine. Also, when I enter a route in the address bar, it doesn't work. Only the routing through uiSref links works at the moment. Presumably I'm overlooking something.

from angular.

kolkov avatar kolkov commented on April 25, 2024

HI! Try this temporary solution for Angular cli #13

from angular.

mackelito avatar mackelito commented on April 25, 2024

@kolkov would you mind posting how you solved it? The repo posted in #13 is a 404 :(

from angular.

zurie avatar zurie commented on April 25, 2024

@niwrA you should try this in your UI Router Config

import {UIRouter} from "ui-router-ng2";
import {Injectable} from "@angular/core";

@Injectable()
export class MyRootUIRouterConfig {
  constructor(uiRouter: UIRouter) {
    //disable the trailing slash
    uiRouter.urlMatcherFactory.strictMode(false);
    //disable the case sensitivity
    uiRouter.urlMatcherFactory.caseInsensitive(true);

  }
}

from angular.

kolkov avatar kolkov commented on April 25, 2024

Thank You very much for your work, @christopherthielen!

from angular.

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.