ncloud.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. class CloudObject{
  2. id
  3. className
  4. data = {}
  5. constructor(className){
  6. this.className = className
  7. }
  8. set(json){
  9. Object.keys(json).forEach(key=>{
  10. if(["objectId","id","createdAt","updatedAt","ACL"].indexOf(key)>-1){
  11. return
  12. }
  13. this.data[key] = json[key]
  14. })
  15. }
  16. get(key){
  17. return this.data[key] || null
  18. }
  19. async save(){
  20. let method = "POST"
  21. let url = "http://dev.fmode.cn/parse/classes/" + this.className
  22. // 更新
  23. if(this.id){
  24. url = "/"+this.id
  25. method = "PUT"
  26. }
  27. let body = JSON.stringify(this.data)
  28. let response = await fetch(url, {
  29. "headers": {
  30. "content-type": "application/json;charset=UTF-8",
  31. "x-parse-application-id": "dev"
  32. },
  33. "body": body,
  34. "method": method,
  35. "mode": "cors",
  36. "credentials": "omit"
  37. });
  38. let result = await response?.json();
  39. if(result?.objectId){this.id = result?.objectId}
  40. return this
  41. }
  42. async destory(){
  43. if(!this.id) return
  44. let response = await fetch("http://dev.fmode.cn/parse/classes/Doctor/"+this.id, {
  45. "headers": {
  46. "x-parse-application-id": "dev"
  47. },
  48. "body": null,
  49. "method": "DELETE",
  50. "mode": "cors",
  51. "credentials": "omit"
  52. });
  53. let result = await response?.json();
  54. if(result){
  55. this.id = null
  56. }
  57. return true
  58. }
  59. }
  60. class CloudQuery{
  61. className
  62. constructor(className){
  63. this.className = className
  64. }
  65. whereOptions = {}
  66. greaterThan(key,value){
  67. if(!this.whereOptions[key]) this.whereOptions[key] = {}
  68. this.whereOptions[key]["$gt"] = value
  69. }
  70. greaterThanAndEqualTo(key,value){
  71. if(!this.whereOptions[key]) this.whereOptions[key] = {}
  72. this.whereOptions[key]["$gte"] = value
  73. }
  74. lessThan(key,value){
  75. if(!this.whereOptions[key]) this.whereOptions[key] = {}
  76. this.whereOptions[key]["$lt"] = value
  77. }
  78. lessThanAndEqualTo(key,value){
  79. if(!this.whereOptions[key]) this.whereOptions[key] = {}
  80. this.whereOptions[key]["$lte"] = value
  81. }
  82. equalTo(key,value){
  83. this.whereOptions[key] = value
  84. }
  85. async get(id){
  86. let url = "http://dev.fmode.cn/parse/classes/"+this.className+"/"+id+"?"
  87. let response = await fetch(url, {
  88. "headers": {
  89. "if-none-match": "W/\"1f0-ghxH2EwTk6Blz0g89ivf2adBDKY\"",
  90. "x-parse-application-id": "dev"
  91. },
  92. "body": null,
  93. "method": "GET",
  94. "mode": "cors",
  95. "credentials": "omit"
  96. });
  97. let json = await response?.json();
  98. return json || {}
  99. }
  100. async find(){
  101. let url = "http://dev.fmode.cn/parse/classes/"+this.className+"?"
  102. if(Object.keys(this.whereOptions)?.length){
  103. let whereStr = JSON.stringify(this.whereOptions)
  104. url += `where=${whereStr}`
  105. }
  106. let response = await fetch(url, {
  107. "headers": {
  108. "if-none-match": "W/\"1f0-ghxH2EwTk6Blz0g89ivf2adBDKY\"",
  109. "x-parse-application-id": "dev"
  110. },
  111. "body": null,
  112. "method": "GET",
  113. "mode": "cors",
  114. "credentials": "omit"
  115. });
  116. let json = await response?.json();
  117. return json?.results || []
  118. }
  119. first(){
  120. }
  121. }
  122. module.exports.CloudObject = CloudObject
  123. module.exports.CloudQuery = CloudQuery