Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the README file #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,45 @@ The above command generates the model at `src/home/model/user.js`

As with controller, `module-name` is optional and can only be used in multi-module projects

Notice: If you are upgraded from an old version of think-cli, you may encounter an error when you try to create a model like below:

```
thinkjs model testModel


/usr/local/lib/node_modules/think-cli/bin/thinkjs-model:61
const context = Object.assign(thinkjsInfo.metadata, argv, {
^

TypeError: Cannot read property 'metadata' of undefined
at Object.<anonymous> (/usr/local/lib/node_modules/think-cli/bin/thinkjs-model:61:42)
```
As your project is created before thus the package.json dont have the "thinkjs" field that we need the init info of how creating this project. So you can create a new project anywhere and copy the "thinkjs" field of the new package.json file into this project's package.json

```
thinkjs new tmpProject
cd tmpProject
cat package.json

{
...

"thinkjs": {
"metadata": {
"name": "tmpProject",
"description": "application created by thinkjs",
"author": "*** <email>",
"babel": true
},
"projectName": "tmpProject",
"templateName": "/usr/local/lib/node_modules/think-cli/default_template",
"cacheTemplatePath": "/Users/***/.think-templates/-usr-local-lib-node_modules-think-cli-default_template",
"clone": false,
"isMultiModule": false
}
}
```

## middleware

**Usage:**
Expand Down