gpt4 book ai didi

javascript - 替换 json 对象中的单词

转载 作者:行者123 更新时间:2023-11-29 19:33:40 33 4
gpt4 key购买 nike

我正在尝试用这个字符串中的 det 替换 tmb:

http://content7.flixster.com/movie/11/17/69/11176945_tmb.jpg

这是我试过的代码。

(function($) {
$(document).ready(function() {

var $apikey = 'myapikey',
$apiURL = 'http://api.rottentomatoes.com/api/public/v1.0.json?apikey=',
$topboxoffice = 'http://api.rottentomatoes.com/api/public/v1.0/lists/movies/upcoming.json?apikey=',
$topboxofficeSearch = $topboxoffice + $apikey;

$.ajax({
url: $topboxofficeSearch,
dataType: 'jsonp',
success: function(response){


var $movies = response.movies,
$moviehtml = $("#movies");


$.each($movies, function(index, $movie){
var $poster = $movie.posters.original;

$poster.replace("tmb", "det");

//console.log($poster);

$("#movies").append( '<img src= '+$poster+ '>');
});
},
error: function(){
console.log("error");
}
});
});
})(jQuery);

我尝试使用 javascript .replace() 但这似乎不起作用。任何帮助都是极好的。

最佳答案

您需要指定替换。 replace() 函数返回替换结果

$poster = $poster.replace("tmb", "det");

关于javascript - 替换 json 对象中的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26170809/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com