前端怎么獲取接口返回pdf文檔內(nèi)容 react
2 回答

慕勒3428872
TA貢獻(xiàn)1848條經(jīng)驗 獲得超6個贊
通過MobX來解決
MobX 是一個簡單、高效的前端狀態(tài)管理腳本庫。 根據(jù)文檔,Just do something to the state and MobX will make sure your app respects the changes。
var person = mobx.observable({
firstName: 'Matt',
lastName: 'Ruby',
age: 37,
fullName: function () {
this.firstName + ' ' + this.lastName;
}
});
添加回答
舉報
0/150
提交
取消