如何在 TypeScript 中保存枚举值?
How can I save enumeration value in TypeScript?
如何在 TypeScript 中保存枚举值?
例如:
createArticle(name: string, clr: ??enumeration??) {
return axios.post(`${environment.apiUrl}/cards`, {
card: `${name}`,
color: ??clr??
},
...
}
PS: Content Type Setting in Strapi
问题解决了!我在设置中有空间。
而不是 "red, white, blue, green" 我应该写 "red,white,blue,green".
谢谢大家!
如何在 TypeScript 中保存枚举值?
例如:
createArticle(name: string, clr: ??enumeration??) {
return axios.post(`${environment.apiUrl}/cards`, {
card: `${name}`,
color: ??clr??
},
...
}
PS: Content Type Setting in Strapi
问题解决了!我在设置中有空间。 而不是 "red, white, blue, green" 我应该写 "red,white,blue,green".
谢谢大家!