typescript中interface约束不生效
index.d.ts
export interface State {
ua: string
}
state.ts
import { State } from "./index.d";
const state = (): State => ({
ua: "other"
});
export default state;
mutations.ts
import * as TYPES from "./types";
import { State } from "./index.d";
const mutations = {
/**
* 保存浏览器类型
*/
[TYPES.SAVE_UA](state: State, info: string) {
// 这里使用State的interface有问题
// (state as any).ua = info; 正常
state.ua = info; // 报错 Property 'ua' does not exist on type 'State'.
}
};
export default mutations;
我这个问题出在哪里了啊 我的State
中明明 有ua
这个属性的啊
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
代码看起来没啥问题,有可能有其它命名也为State的类型和你这个类型冲突了,你可以尝试一下这么做:
要把你把 interface 写到 state.ts 文件里
感谢大家, 我重启了下ide好了