Включил сервер. Прописал путь к ресурсу, добавив адрес сервера "http://localhost:3000":
Ext.define("Element.model.GroupOrder", {
extend: "Element.model.Base",
proxy: {
url: "http://localhost:3000/group-orders/"
},
В итоге вместо запроса:
Request URL:[url]http://localhost/group-orders/?_dc=1463403931184[/url]
Request Method:GET
Получаю запрос:
Request URL:[url]http://localhost:3000/group-orders/?_dc=1463404004806[/url]
Request Method:OPTIONS
Сервер конечно же такой запрос не может обработать, так как Request Method:GET поменялся на Request Method:OPTIONS.
Почему прокси так себя ведет?