2

次のようにcurlを使用して呼び出すことができるRESTful PUT APIがあります。

curl -H "Content-Type: application/json" -X PUT -d "{\"id\":\"xyz\",\"attributeName\":\"privilegedUser\",\"attributeValue\":\"true\"}" https://www.example.com:7777/api/customer/set/attribute -v --insecure --negotiate -u:

バックボーン初心者です。このように Backbone を使用して JS から同じものを呼び出そうとしています (ただし、機能しません)。

var Attribute = Backbone.Model.extend({
    url: 'https://www.example.com:7777/api/customer/set/attribute'
});

var privilegeUserAttribute = new Attribute({id: "xyz", attributeName: "privilegedUser"});

privilegeUserAttribute.save({attributeValue: "true"});

私は何を間違っていますか?

4

0 に答える 0