Giter Club home page Giter Club logo

Comments (3)

mkideal avatar mkideal commented on June 10, 2024
  • issue 1: AtLeast not found in command `root.
    var root = &cli.Command{
    Name: "fi",
    Desc: "File input demo",
    Text: "File input demo with mandatory options",
    Argv: func() interface{} { return new(rootT) },
    Fn: fi,
    }
  • issue 2: Change Argv: func() interface{} { return new(rootT) } to Argv: func() interface{} { argv := new(rootT); argv.Self = argv; return argv },

from cli.

mkideal avatar mkideal commented on June 10, 2024
package main

import (
    "fmt"
    "github.com/mkideal/cli"
    clix "github.com/mkideal/cli/ext"
    "os"
)

type rootT struct {
    cli.Helper
    Self *rootT       `cli:"c,config"usage:"config file" json:"-" parser:"jsonfile" dft:"fi.json"`
    Name string       `cli:"*n,name"usage:"Name (mandatory)"`
    Tag  string       `cli:"*t,tag"usage:"Tag used for record saving (mandatory)"`
    ID   string       `cli:"id"usage:"ID to use"`
    Fi   *clix.Reader `cli:"i,input"usage:"The source (or stdin if unspecified)"`
}

var root = &cli.Command{
    NumOption: cli.AtLeast(1),
    Name:      "fi",
    Desc:      "File input demo",
    Text:      "File input demo with mandatory options",
    Argv:      func() interface{} { argv := new(rootT); argv.Self = argv; return argv },
    Fn:        fi,
}

func main() {
    cli.SetUsageStyle(cli.ManualStyle) // up-down, for left-right, use NormalStyle
    //NOTE: You can set any writer implements io.Writer
    // default writer is os.Stdout
    if err := cli.Root(root).Run(os.Args[1:]); err != nil {
        fmt.Fprintln(os.Stderr, err)
    }
    fmt.Println("")
}

func fi(ctx *cli.Context) error {
    ctx.JSON(ctx.RootArgv())
    ctx.JSON(ctx.Argv())
    fmt.Println()

    return nil
}

from cli.

suntong avatar suntong commented on June 10, 2024

Oh, I'm so sorry to trouble you with my own silly mistake. You saved my day. Thanks A LOT!

from cli.

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.