说我有两个清单:
let postMessage = JSON.stringify({
'person': {
'firstName': this.user.firstName,
'lastName': this.user.lastName
}
});
我正在尝试检查它们是否具有相同的值和顺序,但是如果我这样做
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
this.http.post('URL', postMessage, options)
我弄错了。如何检查它们是否具有相同顺序的相同值?
答案 0 :(得分:6)
没关系。我忘记了OCaml中的=不同。
list1 = list2
返回true ...