0
以下是可以同時調用的函數。我想知道value1
和value2
是否是線程安全的Concurrent Async HTTP Post:值線程安全嗎?
var value1 = 0;
postSomething = function(model){
return this.$http.post(url, model).then(function(response){
if(model == "hello")
value1 = true;
else
value2 = true;
}, function(response){});
}
舉個例子:
與model == hello
調用時,同時之前的服務器響應與model == bye
另一個調用。在這種情況下會發生什麼?