我尝试在我的项目中集成Ecom Express API。当我使用postman获取AWB编号时,它会给我如下JSON输出:
当我在我的页面上写代码时,我无法得到响应。
<form id="insForm" name="insForm" enctype="multipart/form-data">
<input type="text"id="username" name="username" value="ecomexpress" />
<input type="text" id="password" name="password" value="Ke$3c@4oT5m6h#$" />
<input type="text" id="count" name="count" value="5" />
<input type="text" id="type" name="type" value="cod" />
</form>
function getAWBNo() {
var formData = new FormData($('#insForm')[0]);
$.ajax({
url: 'http://staging.ecomexpress.in/apiv2/fetch_awb/',
type: 'POST',
data: formData,
dataType: 'json',
cache: true,
contentType: "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW",
processData: false,
type: 'POST',
success: function (data) {
}
});
}
我用的是Razor v3。
2条答案
按热度按时间eoigrqb61#
谢谢大家。我已经通过使用NuGet包中可用的Rest API解决了我的问题。
4ktjp1zp2#