data['result'] = json.loads(serializers.serialize("json", a)) return JsonResponse(data) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 在urls.py配置访问地址 url(r'^get_json$', testdb.get_json,访问后得到的结果(返回的数据自己在线解析过) { "result": [{ "model": "...
const res_body = JSON.parse(result.stdout) // 示例:打印出来 cy.log(res_body) // 断言 返回结果 expect(res_body.length).to.be.at.least(1) }) }) it("查询结果当用例参数", function() { cy.visit('https://www.cnblogs.com/yoyoketang') // json解析 const res_json = JSON.parse(this...
cy.exec("python D:\\Cypress\\cypress\\fixtures\\select_sql.py") .as("get_result") .then(function(result) {// json解析成objectconstres_body =JSON.parse(result.stdout)// 示例:打印出来cy.log(res_body)// 断言 返回结果expect(res_body.length).to.be.at.least(1) }) })it("查询结果当...