Ngxs - 从后端

时间:2018-04-23 06:43:58

标签: angular ngxs

我刚刚开始尝试使用ngxs但是从我的阅读到目前为止,我还没有100%清楚我应该回调我的API以保持和读取数据(所有示例)我已经看到要么不做,要么使用一些模拟)。

E.g。我创建了一个维护项目列表的状态。当我想添加一个项目时,我将' AddItem`动作发送到商店,在那里我将新项目添加到状态。这一切都运行正常 - 问题是在哪里插入将项目POST到服务器的调用的适当位置?

我应该在我的动作实现中调用API,即在我更新商店的项目列表之前。

或者我应该在我的Angular组件中调用API(通过服务),然后发送'添加项目'我收到回复时的行动?

我对这个领域很陌生,所以这些方法的任何指导或利弊都会很棒。

2 个答案:

答案 0 :(得分:17)

最好的地方在你的行动处理程序中。

import { HttpClient } from '@angular/common/http';
import { State, Action, StateContext } from '@ngxs/store';
import { tap, catchError } from 'rxjs/operators';

//
// todo-list.actions.ts
//
export class AddTodo {
  static readonly type = '[TodoList] AddTodo';
  constructor(public todo: Todo) {}
}


//
// todo-list.state.ts
//
export interface Todo {
  id: string;
  name: string;
  complete: boolean;
}
​
export interface TodoListModel {
  todolist: Todo[];
}
​
@State<TodoListModel>({
  name: 'todolist',
  defaults: {
    todolist: []
  }
})
export class TodoListState {

  constructor(private http: HttpClient) {}
​
  @Action(AddTodo)
  feedAnimals(ctx: StateContext<TodoListModel>, action: AddTodo) {

    // ngxs will subscribe to the post observable for you if you return it from the action
    return this.http.post('/api/todo-list').pipe(

      // we use a tap here, since mutating the state is a side effect
      tap(newTodo) => {
        const state = ctx.getState();
        ctx.setState({
          ...state,
          todolist: [ ...state.todolist, newTodo ]
        });
      }),
      // if the post goes sideways we need to handle it
      catchError(error => window.alert('could not add todo')),
    );
  }
}

在上面的示例中,我们没有明确的api返回操作,我们会根据AddTodo操作响应来改变状态。

如果您愿意,可以将其拆分为三个动作以更明确,

AddTodoAddTodoCompleteAddTodoFailure

在这种情况下,您需要从http帖子发送新事件。

答案 1 :(得分:2)

如果要将效果与商店分开,可以定义基本州类:

@State<Customer>( {
    name: 'customer'
})
export class CustomerState {
    constructor() { }

    @Action(ChangeCustomerSuccess)
    changeCustomerSuccess({ getState, setState }: StateContext<Customer>, { payload }: ChangeCustomerSuccess ) {
        const state = getState();
       // Set the new state. No service logic here.
       setState( {
           ...state,
           firstname: payload.firstname, lastname: lastname.nachname
       });
    }
}

然后你将从该状态派生并将你的服务逻辑放在派生类中:

@State<Customer>({
    name: 'customer'
})
export class CustomerServiceState extends CustomerState {

    constructor(private customerService: CustomerService, private store: Store) {
        super();
    }

    @Action(ChangeCustomerAction)
    changeCustomerService({ getState, setState }: StateContext<Customer>, { payload }: ChangeCustomerAction) {

        // This action does not need to change the state, but it can, e.g. to set the loading flag.
        // It executes the (backend) effect and sends success / error to the store.

        this.store.dispatch( new ChangeCustomerSuccess( payload ));
    }
}

在我看过的任何NGXS示例中,我都没有看到这种方法,但我正在寻找一种方法将这两个问题分开 - UI和后端。